@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;800&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
}


body {
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;

}

.noise {
    position: absolute;
    background-image: url(https://raw.githubusercontent.com/taimoorshahzada/Film-Grain-Noise-Effect-on-Background-in-Website-using-Pure-CSS/main/noise.gif);
    opacity: 0.3;
    z-index: 2;
    pointer-events: none;
    width: 100vw;
    height: 120vh;
    mix-blend-mode: multiply;
}

.background {

    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0) -3.83%, rgba(0, 0, 0, 0.585) 67.55%), url(./assets/back.png);
    background-size: 20%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    background-repeat: repeat;
    width: 120vw;
    height: 120vh;
    color: white;
}

.message {
    z-index: 3;
    width: 48vw;
    margin-top: 20vh;
    top: 10vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.staytuned {
    width: 100%;
    height: 20vh;
    background-image: url(./assets/staytuned.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top;
    margin-block-end: 1%
}

h2 {

    color: #fff;
    font-weight: 700;
    font-size: 3.7vw;
    margin-block-end: 1%;
}

.logo {
    margin-top: 10px;
    height: 12vh;
    width: 20vw;
    background-image: url(./assets/logo+3.0.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media only screen and (max-width: 800px) {
    .message {
        width: 92vw;
    }

    .staytuned {
        height: 48px;
        width: 100%;
    }

    h2 {
        font-size: 7.2vw;
    }

    .logo {
        height: 22vh;
        width: 40vw;
    }
}