@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Poppins, sans-serif;
}
body{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
    background: #1f2028;
    overflow: hidden;
}
section {
    position: relative;
    width:100%;
}
section .waves{
    position: relative;
    width: 100%;
    height: 100%;
}
section .waves .wave{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100px;
    background: url(/images/wave.png);
    background-size: 1000px;
}
section .waves .wave#wave1 {
    opacity: 0.5;
    bottom: 0;
    z-index: 1000;
    animation: waveanim2 4s linear infinite;
}
section .waves .wave#wave2 {
    opacity: 0.5;
    bottom: 10px;
    z-index: 999;
    animation: waveanim 3s linear infinite;
}
section .waves .wave#wave3 {
    opacity: 0.2;
    bottom: 20px;
    z-index: 998;
    animation: waveanim 4s linear infinite;
}
section .waves .wave#wave4 {
    opacity: 0.7;
    bottom: 25px;
    z-index: 999;
    animation: waveanim2 3s linear infinite;
}

@keyframes waveanim {
    0%{
        background-position-x: 1000px;
    }
    100%{
        background-position-x: 0px;
    }
}
@keyframes waveanim2 {
    0%{
        background-position-x: 0px;
    }
    100%{
        background-position-x: 1000px;
    }
}

.stars{
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    mix-blend-mode: screen;
    object-fit: cover;
    animation: fadeIn 3s both;
}

h2{
    position:absolute;
    bottom:80vh;
    transform: translateY(50%);
    width: 100%;
    text-align: center;
    color: #fefefe;
    font-size: 6.5dvw;
    font-weight: 800;
    text-transform: uppercase;
}
.logo{
    position: absolute;
    left:35vw;
    width: 35dvw;
    bottom: 10dvh;
    pointer-events: none;
    animation: fadeInUp 3s 1s both, pulse 2s 4s ease-in-out infinite forwards;
}

@media(max-width:1024px){
    .logo{
        left:25vw;
        width: 57dvw;
        bottom: 12dvh;
    }
    h2{
        font-size: 10.5dvw;
    }
}
@media(max-width:567px){
    .logo{
        left:15vw;
        width: 80dvw;
        bottom: 25dvh;
    }
    h2{
        font-size: 10.5dvw;
    }
}
    @-webkit-keyframes fadeInUp {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
    }
    @keyframes fadeInUp {
    0% {
    opacity: 0;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    }
    100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    }
    } 

    .fadeInText {
        -webkit-animation-name: fadeIn;
        animation-name: fadeIn;
        -webkit-animation-duration: 2s;
        animation-duration: 2s;
        -webkit-animation-fill-mode: both;
        animation-fill-mode: both;
        animation-delay: 4s;
        }
        @-webkit-keyframes fadeIn {
        0% {opacity: 0;}
        100% {opacity: 1;}
        }
        @keyframes fadeIn {
        0% {opacity: 0;}
        100% {opacity: 1;}
        }
            @-webkit-keyframes pulse {
            0% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
            }
            50% {
            -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
            }
            100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
            }
            }
            @keyframes pulse {
            0% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
            }
            50% {
            -webkit-transform: scale3d(1.05, 1.05, 1.05);
            transform: scale3d(1.05, 1.05, 1.05);
            }
            100% {
            -webkit-transform: scale3d(1, 1, 1);
            transform: scale3d(1, 1, 1);
            }
            }
  
            