*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    overflow:hidden;
    font-family:Inter,sans-serif;
    background:#000;
}

/* Background Video */

#bg-video{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:-2;
}

/* Dark Overlay */

.overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.45);
    z-index:-1;
}

/* Main Content */

.content{
    height:100vh;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
    color:white;
    padding:20px;
    animation:fade 1.8s ease;
}

/* Logo */

h1{
    font-family:"Cormorant Garamond",serif;
    font-size:90px;
    font-weight:600;
    letter-spacing:10px;
    margin-bottom:5px;
}

/* Cosmetics */

.brand-name{
    font-family:Inter,sans-serif;
    font-size:13px;
    letter-spacing:9px;
    text-transform:uppercase;
    color:rgba(255,255,255,0.85);
    margin-bottom:35px;
}

/* Tagline */

p{
    font-family:"Cormorant Garamond",serif;
    font-size:34px;
    line-height:1.4;
    margin-bottom:22px;
}

/* Launching Soon */

.coming-soon{
    font-family:"Cormorant Garamond",serif;
    font-size:36px;
    font-style:italic;
    color:rgba(255,255,255,0.9);
    margin-bottom:40px;
    letter-spacing:1px;
}

/* Instagram Button */

a{
    text-decoration:none;
    color:white;
    border:1px solid rgba(255,255,255,.8);
    padding:16px 44px;
    letter-spacing:3px;
    font-size:13px;
    transition:0.35s;
    backdrop-filter:blur(8px);
}

a:hover{
    background:white;
    color:black;
}

/* Fade Animation */

@keyframes fade{
    from{
        opacity:0;
        transform:translateY(20px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Mobile */

@media (max-width:768px){

    h1{
        font-size:62px;
        letter-spacing:6px;
    }

    .brand-name{
        font-size:11px;
        letter-spacing:6px;
        margin-bottom:28px;
    }

    p{
        font-size:26px;
    }

    .coming-soon{
        font-size:28px;
    }

    a{
        padding:14px 36px;
    }

}