*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{

    font-family:'Inter',sans-serif;

    height:100vh;
    overflow:hidden;

    display:flex;
    justify-content:center;
    align-items:center;

    background-image: url("Untitled-1.webp");
background-size: cover;
background-repeat: no-repeat;
background-position: 50% 50%;

animation: floatBackground 25s ease-in-out infinite;

    color:white;
    position:relative;
isolation:isolate;
}

/* dark overlay */

/* grain */

body::before{

    content:"";

    position:absolute;
    inset:0;

    background-image:
    radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);

    background-size:4px 4px;

    opacity:.18;

    mix-blend-mode:soft-light;
}

.content{

    position:relative;
    z-index:2;

    text-align:center;

    width:100%;

}

h1{

    font-size:66px;

    font-weight:700;

    letter-spacing:-2px;

    margin-bottom:8px;

}

.tagline{

    font-size:30px;

    font-weight:300;

    font-style:italic;

    opacity:.96;

    margin-bottom:90px;

}

.coming{

    display:inline-block;

    background:#8FBD70;

    color:white;

    font-size:38px;

    font-weight:700;

    padding:18px 52px;

    letter-spacing:.5px;

    margin-bottom:170px;

}

a{

    display:block;

    color:white;

    text-decoration:none;

    font-size:24px;

    font-style:italic;

    font-weight:300;

    opacity:.82;

}

a:hover{

    opacity:1;

}

@media(max-width:768px){

h1{

    font-size:42px;

}

.tagline{

    font-size:22px;

    margin-bottom:60px;

}

.coming{

    font-size:26px;

    padding:16px 36px;

    margin-bottom:110px;

}

a{

    font-size:18px;

}

@keyframes lightMove{

    0%{

        transform:
        translate(-180px,-120px);

    }

    100%{

        transform:
        translate(180px,120px);

    }

@keyframes floatBackground {

    0% {
        background-position: 45% 48%;
    }

    100% {
        background-position: 55% 52%;
    }

}