html {
  font-size: 14px;
  font-family: Poppins;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
        font-family: Poppins;
    }
}
header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    background-color: #ffffff;
    z-index: 250;
}
:root {
    --background: #4285f4;
    --primary-color: #000;
}

body {
    font-family: Poppins;
/*    overflow: hidden;*/
}

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

.containerSplash {
    z-index:10000;
    display: flex;
    align-items: center;
    justify-content: center;
    background:#000;
    height: 100vh;
    width: 100%;
    animation: lift 0.8s ease-in-out;
    animation-delay: 2.5s;
    animation-fill-mode: forwards;
}

.title {
    text-align: center;
    font-family: "Lexend Deca", sans-serif;
    animation: wave 0.5s, jump 3.1s;
    position: relative;
    top: 0;
    opacity: 0;
    z-index: 3;
    animation-fill-mode: forwards;
}


span:nth-of-type(1) {
    /*    //left: 0rem;*/
    animation: wave 0.1s, jump 3s ease-in-out alternate 0.05s;
}

span:nth-of-type(2) {
/*    //left: 0.8rem;*/
    animation: wave 0.4s, jump 1.15s ease-in-out alternate 0.1s;
}

span:nth-of-type(3) {
 /*   //left: 1.6rem;*/
    animation: wave 0.4s, jump 1.1s ease-in-out alternate 0.15s;
}

span:nth-of-type(4) {
/*    //left: 2.4rem;*/
    animation: wave 0.4s, jump 1.1s ease-in-out alternate 0.2s;
}

span:nth-of-type(5) {
/*    //left: 3.2rem;*/
    animation: wave 0.4s, jump 1.1s ease-in-out alternate 0.25s;
}

span:nth-of-type(6) {
/*    //left: 4rem;*/
    animation: wave 0.4s, jump 1.1s ease-in-out alternate 0.3s;
}


@keyframes wave {
    0% {
        top: 0%;
    }

    100% {
        top: 100%;
    }
}

@keyframes jump {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 0;
    }

    90% {
        transform: translate3d(0, -26%, 0);
        opacity: 1;
    }

    100% {
        transform: translate3d(0, -120%, 0);
        opacity: 1;
    }
}

@keyframes lift {
    0% {
        transform: translate3d(0, 0, 0);
        opacity: 1;
        visibility: visible;
    }

    100% {
        transform: translate3d(0, -100%, 0);
        opacity: 1;
        visibility: hidden;
    }
}

@keyframes appear {
    0% {
        visibility: hidden;
    }

    100% {
        visibility: visible;
    }
}

