html {
    box-sizing: border-box;
}

body{
    margin: 0;
    background: radial-gradient(circle, #537162, #013220);
}

.container{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    background-image: url(giphy.gif);
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
}

button{
    position: absolute;
    right: 30%;
    cursor: pointer;
    outline: none;
    width: 200px;
    height: 50px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 20px;
    color: white;
    background-color: #013220;
    border: none;
    border-radius: 5px;
    /* box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.4); */
}

button:hover{
    transform: translateY(-5px);
    box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.4);
}

button:active{
    box-shadow: 1px 1px 10px 5px rgba(0, 0, 0, 0.4);
    transform: translateY(0);
}

button:disabled{
    cursor: default;
    filter: brightness(30%);
}



@media screen and (max-width: 1000px) {
    button{
        box-shadow: 2px 2px 20px 10px rgba(0, 0, 0, 0.4);
        right: 10%; 
    }
}