@import url('https://fonts.googleapis.com/css2?family=Handlee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Parisienne&display=swap');

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

body {
    background: #ffe259;
    /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #ffa751, #ffe259);
    /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #ffa751, #ffe259);
    /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
    overflow: hidden;
    min-height: 100vh;
    font-family: 'Handlee', cursive;
}

#particle {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 0;
}

#overlay {
    position: relative;
}

.landing-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.logo-cnt {
    background: white;
    max-width: 250px;
    border-radius: 50%;
    margin: 0 auto;
    -webkit-box-shadow: 10px 10px 21px 6px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: 10px 10px 21px 6px rgba(0, 0, 0, 0.12);
    box-shadow: 10px 10px 21px 6px rgba(0, 0, 0, 0.12);
    -webkit-animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;

}

.logo {
    max-width: 250px;
}

.coming-soon {
    font-size: 36px;
    color: white;
    text-align: center;
    margin-top: 1.5rem;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.pg-name {
    text-align: center;
    color: white;
    font-size: 13px;
    text-transform: uppercase;
    -webkit-animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
    animation: slide-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.quote-cnt {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}



blockquote {
    font-weight: 100;
    font-size: 27px;
    max-width: 600px;
    line-height: 1.4;
    position: relative;
    margin: 0;
    padding: .5rem;
    width: fit-content;
    font-family: 'Parisienne', cursive;
    color: white;
    white-space: nowrap;
    overflow: hidden;

}

.typewriter {
    overflow: hidden;
    /* Ensures the content is not revealed until the animation */
    border-right: .15em solid orange;
    /* The typwriter cursor */
    white-space: nowrap;
    /* Keeps the content on a single line */
    margin: 0 auto;
    /* Gives that scrolling effect as the typing happens */
    letter-spacing: .15em;
    /* Adjust as needed */
    animation:
        typing 3.5s steps(22, end),
        blink-caret .75s step-end infinite;
}

blockquote:before,
blockquote:after {
    position: absolute;
    color: #ffffff6b;
    font-size: 3rem;
    width: 4rem;
    height: 4rem;
}

blockquote:before {
    content: '“';
    left: -20px;
    top: -5px;
}

blockquote:after {
    content: '”';
    right: -65px;
    top: 23px;
}

/* The typing effect */
@keyframes typing {
    from {
        width: 0
    }

    to {
        width: 298.7px;
    }
}

/* The typewriter cursor effect */
@keyframes blink-caret {

    from,
    to {
        border-color: transparent
    }

    50% {
        border-color: orange;
    }
}

@-webkit-keyframes slide-right {
    0% {
        -webkit-transform: translateX(-100vw);
        transform: translateX(-100vw);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slide-right {
    0% {
        -webkit-transform: translateX(-100vw);
        transform: translateX(-100vw);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}


@-webkit-keyframes slide-left {
    0% {
        -webkit-transform: translateX(100vw);
        transform: translateX(100vw);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}

@keyframes slide-left {
    0% {
        -webkit-transform: translateX(100vw);
        transform: translateX(100vw);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}