* {
    box-sizing: border-box;
}


html,
body {

    margin: 0;

    width: 100%;

    height: 100%;

}


body {

    display: flex;

    justify-content: center;

    align-items: flex-start;

    padding-top: 10vh;

    overflow: hidden;

    position: relative;

    background:
    linear-gradient(
        120deg,
        #FFF8F2,
        #F7D8CC,
        #D9D1F3,
        #CFE7F3,
        #F4E4C9
    );

    background-size:400% 400%;

    animation:sunrise 30s ease infinite;


}

body::before {

    content: "";

    position: absolute;

    inset: 0;

    background-image: url("papertexture.png");

    background-repeat: repeat;

    background-size: 2000px;

    opacity: 0.22;

    pointer-events: none;

    z-index: 0;

}



/* Animated sunset movement */

@keyframes sunrise {

    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }

}


/* Floating content */

.container {

    position: relative;

    z-index: 2;

    text-align: center;

    padding: 40px;

    max-width: 900px;

}


/* Logo */

.logo {

    width:280px;

    max-width:60vw;

    margin-bottom:15px;

    opacity:0;

    animation:reveal 1.5s ease forwards;

}


/* Glow behind logo */

.logo-glow {

    position: absolute;

    top: -20px;

    left: 50%;

    transform: translateX(-50%);

    width: 320px;

    height: 320px;

    background: radial-gradient(
        circle,
        rgba(255, 210, 160, 0.55),
        rgba(255, 210, 160, 0)
    );

    filter: blur(25px);

    z-index: 1;

}



/* Brand name */

h1 {

    font-family: 'Handlee', cursive;

    font-size: 35px;

    font-weight: 400;

    letter-spacing: 1px;

    color: #34393F;

    margin: 0 0 20px;

    opacity:0;

    animation:reveal 1.6s ease forwards;

    animation-delay:0.6s;

    
}



/* Tagline */

.tagline {

    font-family: 'Cormorant Garamond', serif;

    font-size:22px;

    line-height:1.4;

    letter-spacing:0.5px;

    color:#42474D;

    max-width:none;

    white-space:nowrap;

    margin:auto;

    opacity:0;

    animation:reveal 1.6s ease forwards;

    animation-delay:1s;

}



/* Divider */

.divider {

    width: 50px;

    height: 1px;

    background: #34393F;

    opacity: 0.20;

    margin: 45px auto 30px;

    opacity:0;

    animation:reveal 1.6s ease forwards;

    animation-delay:1.2s;

}


/* Coming soon */

.coming {

    font-family: 'Cormorant Garamond', serif;

    font-size: 22px;

    letter-spacing: 5px;

    color: #34393F;

    font-style: italic;

    opacity:0;

    animation:reveal 1.6s ease forwards;

    animation-delay:1.5s;

}



/* Fade */

@keyframes reveal {

    from {

        opacity: 0;
        transform: translateY(15px);
        filter: blur(3px);

    }

    to {

        opacity: 1;
        transform: translateY(0);
        filter: blur(0);

    }

}



/* Particles */

.particles {

    position:absolute;

    inset:0;

    z-index:1;

}



.particles span {

    position:absolute;

    width:6px;

    height:6px;

    background:rgba(255,255,255,0.45);

    border-radius:50%;

    animation:float 12s infinite ease-in-out;

}



.particles span:nth-child(1){

    left:15%;
    top:70%;

}

.particles span:nth-child(2){

    left:80%;
    top:20%;

    animation-delay:3s;

}


.particles span:nth-child(3){

    left:65%;
    top:75%;

    animation-delay:5s;

}


.particles span:nth-child(4){

    left:30%;
    top:15%;

    animation-delay:7s;

}


.particles span:nth-child(5){

    left:90%;
    top:65%;

    animation-delay:2s;

}


/* COPYRIGHT */

.copyright {

    margin-top: 90px;

    font-family: 'Cormorant Garamond', serif;

    font-size: 12px;

    letter-spacing: 1px;

    color: #34393F;

    opacity: 0.22;

}


@keyframes float {

    0%,100% {

        transform:translateY(0);

        opacity:0.3;

    }


    50% {

        transform:translateY(-40px);

        opacity:1;

    }

}



/* Mobile */

@media(max-width:600px){


    .logo {

        width:250px;

    }


    h1 {

        font-size:26px;

        margin-bottom:25px;

    }


    .tagline {

        font-size:18px;

        white-space:normal;

        max-width:320px;

         .tagline br {
    display: none;

    }

   
}


    .coming {

        font-size:18px;

        letter-spacing:3px;

    }


    .copyright {

    margin-top: 70px;

    font-size: 11px;

}

}