/* Universal CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Bebas Neue', cursive;
    font-weight: 900;
    color: #fff;
}

.wrapper {
    color: #000;
    min-width: 98vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#play {
    background: linear-gradient(to right, #c7c7c7, #f7f7f7);
    padding: 10px;
    border-radius: 50%;
}


/* END Universal CSS */


/* Page 1 */

#page1 {
    min-height: 95vh;
    background-image: url('./assets/img/google.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: -1;
}

.btn-cta {
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    border: none;
    color: #2c2c2c;
    text-decoration: none;
}

.btn-cta:hover {
    transition: all 0.3s ease-in-out;
    background-color: #2c2c2c!important;
    color: #fff!important;
}


/* Page 2 */

#page2 {
    background: url('./assets/img/bg_grad_gif.gif');
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    z-index: 999;
}

.container {
    margin-top: 2rem;
    width: 50vh;
    height: 50vh;
    border-radius: 50px!important;
}


/* Media Queries */

@media screen and (max-width: 768px) {}


/* media query for large device */

@media screen and (min-width: 768px) {}