*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Courier New', Courier, monospace;
}
section{
    width:100vw;
    height:100vh;
    background-image: linear-gradient(to top, #a18cd1 0%, #fbc2eb 100%);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    position: relative;
}
h1 {
    position: fixed;
    top: 20%;
    z-index: 2;
    font-size: 3em;
}
span{
    position: fixed;
    top: 60%;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    
}
.press-button{
    background-color: rgba(40,164,201,0.6);
    border-radius: .5em;
    box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.2),
                inset 0 2px 0 hsla(0,0%,100%,.1),
                inset 0 -0.2em 0 hsla(0,0%,100%,.1),
                inset 0 -0.25em 0 hsla(0,0%,0%,.25),
                0 0.25em 0.25em hsla(0,0%,0%,.05);
    color: #fff;
    cursor: pointer;
    display: inline-block;
    font-family: sans-serif;
    font-size: 1em;
    font-weight: bold;
    line-height: 1.5;
    margin: 0 .5em 1em;
    padding: .5em 1.5em .75em;
    text-decoration: none;
}

.press-button:active {
    box-shadow: inset 0 0 0 1px hsla(0,0%,0%,.2),
                inset 0 2px 0 hsla(0,0%,100%,.1),
                inset 0 0 0 3em hsla(0,0%,100%,.2),
                inset 0 0.25em 0.5em hsla(0,0%,0%,.05),
                0 -1px 1px hsla(0,0%,0%,.1),
                0 1px 1px hsla(0,0%,100%,.25);
    margin-top: .25em;
    outline: none;
    padding-bottom: .5em;
}
img{
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
}
@media screen and (max-width:850px) {
    h1{
        font-size: 75px;
        top: 30%;
    }
    img{
        width: 100vw;
        margin: auto;
        object-fit: fill;
    }
    span{
        font-size: 7vw;
    }
}