@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;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

body {
    color: #fff;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 8%;
    background: transparent;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.logo {
    position: relative;
    font-size: 25px;
    color: #fff;
    font-weight: 600;
}

.navbar {
    position: relative;
}

.navbar a {
    font-size: 18px;
    color: #fff;
    font-weight: 500;
    margin: 0 20px;
    transition: .3s;
}

.navbar a:hover,
.navbar a.active {
    color: #ffee00;
}

.home {
    width: 100%;
    height: 100vh;
    background: url('bgsonic_looping.webp') no-repeat;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 50px 8% 0;
}

.div-content {
    max-width: 630px;
}

.div-content h1 {
    position: relative;
    font-size: 45px;
    line-height: 1.2;
}

.div-content h1:nth-child(3) {
    background: linear-gradient(#59ffff, #1952ab);
    -webkit-background-clip: text;
    color: transparent;
}

.div-content p {
    position: relative;
    font-size: 16px;
    margin: 25px 0 30px;
}

.div-content .btn-box {
    position: relative;
    display: flex;
    justify-content: space-between;
    width: 345px;
}

.btn {
    padding: 10px 50px;
    background: #42c1e8;
    border: 2px solid #42c1e8;
    border-radius: 6px;
    font-size: 16px;
    color: #01003f;
    letter-spacing: 1px;
    font-weight: 600;
}

.btn-box .btn:nth-child(2) {
    background: transparent;
    color: #42c1e8;
    transition: .5s;
}

.btn-box .btn:nth-child(2):hover {
    background: #42c1e8;
    color: #01003f;
}

.btn.sign-up {
    position: relative;
    border: none;
}

.animate {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #01003f;
    animation: show-right 1s ease-out forwards;
    animation-delay: calc(.3s * var(--i));
}

.animate.bg {
    animation: fade-in 1s ease-out forwards;
    animation-delay: 3.2s;
}

.footer-simple {
    background-color: #1c1c1c;
    color: #aaa;
    text-align: center;
    padding: 20px;
    font-size: 14px;
    font-family: Arial, sans-serif;
    border-top: 2px solid #aaa;
}

.footer-simple span {
    color: #fff;
    font-weight: bold;
}


/* KEYFRAME ANIMATIONS */
@keyframes show-right {
    100% {
        width: 0;
    }
}

@keyframes fade-in {
    100% {
        opacity: 0;
    }
}

/* Media Query */

/* Laptop */

@media (max-width: 1366px) {
    html {
        font-size: 75%;
    }
}

/* Tablet */
@media (max-width: 768px) {
    html {
        font-size: 62.5%;
    }
}

/* Mobile */
@media (max-width: 450px) {
    html {
        font-size: 55%;
    }
}

.navbar {
    display: none;
}