@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

body {
    background: url("../img/movies-2020.jpg") no-repeat center center fixed;
    background-size: 100% 100%
}

#layer {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    width: 100%;
    height: 100%;
    background: url("../img/grid.png") rgba(0, 0, 0, 0.4);
    z-index: -1;
}

#wrapper {
    background: rgba(255, 255, 255, 1);
    max-width: 660px;
    margin: auto;
    padding: 20px;
    box-sizing: border-box;
    margin-top: 50px;
    border-radius: 5px;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    margin: 0;
    text-align: center;
}

p.main {
    font-size: 24px;
    margin-bottom: 5px;
}

img {
    width: 250px;
    display: block;
    margin: auto;
    margin-top: 3px;
}

.animate__animated.animate__bounceInDown {
    --animate-duration: 2s;
}

a button {
    display: block;
    width: 200px;
    margin: auto;
    margin-top: 5px;
    color: #0d0d0d;
    font-size: 20px;
    padding: 5px 0;
    border: 1px solid #dbdbdb;
    font-weight: 300;
    text-transform: uppercase;
    transition: all linear 300ms;
}

a button:hover {
    background: #dbdbdb;
    transition: all linear 300ms;
}

@media screen and (max-width: 660px) {
    body {
        background-size: cover;
    }

    #wrapper {
        max-width: 95%;
    }
}