@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;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;

    margin: 1rem 4rem;
}

.navbar .navbar__container {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;

    list-style-type: none;
}

.navbar__container li {
    font-weight: 200;
}

.navbar__container li:first-child {
    font-weight: bolder;
}

.mode {
    background: #111729;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 40px;

    height: 20px;
}

.mode .moon {
    width: 15px;
    height: 15px;

    margin-right: 7px;
    margin-left: 10px;
}

.mode .sun {
    background-color: #fff;
    border: none;
    border-radius: 50%;
    width: 15px;
    height: 15px;

    margin-right: 14px;
}

.navbar .bar-menu {
    display: none;
}


/* Hero section */
.hero {
    display: flex;
    justify-content: space-between;
    gap: 8rem;
    
    margin: 3rem 4rem;
    height: 70%;
}

.hero .hero__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.hero .hero-header {
    font-size: 0.8rem;
    font-weight: 600;

    margin-bottom: 1rem;
}

.hero h1 {
    font-size: 4.5rem;
    color: #223344;

    margin-bottom: 2rem;
}

.hero .subtext {
    font-size: 1.2rem;
    font-weight: 500;
    color: #909193;

    margin-bottom: 1rem;
}

.hero .button__container {
    display: flex;
    gap: 1rem;

    margin-bottom: 1.5rem;
}

.hero .button__container .get-started {
    background: #2A4DD0;
    color: #fff;
    width: 12rem;
    height: 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
    font-weight: 500;
}

.hero .button__container .get-live {
    color: #2A4DD0;
    font-weight: 600;
    text-decoration: underline;
    text-decoration-thickness: 0.1rem;
    width: 12rem;
    height: 3rem;
    border: none;
    border-radius: 10px;
    font-size: 1.2rem;
}

.hero .button__container .get-started:hover, .hero .button__container .get-live:hover {
    cursor: pointer;
}

.hero .credits {
    display: flex;
    gap: 1rem
}

.hero .credits .line {
    display: flex;
    align-items: center;
    font-size: 0.9rem;
    gap: 0.4rem;

    color: #909193;
    font-weight: 500;
}

.hero .credits .line img {
    width: 17px;
    height: 17px;
}


.hero .hero__img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero .hero__img img {
    width: 560px;
    height: 480px;
}


 @media screen and (max-width: 1025px) {
    .hero {
        width: 80%;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3.8rem;
    }
    .hero .subtext {
        font-size: 1.2rem;
        width: 60%;
    }
 }

 @media screen and (max-width: 650px) {
    .navbar .navbar__container, .navbar .mode {
        display: none;
    }

    .navbar .bar-menu {
        display: flex;
    }

    .navbar .bar-menu img {
        width: 28px;
        height: 28px;
    }

    .hero {
        width: 80%;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3.4rem;
        width: 80%;
    }
    .hero .subtext {
        font-size: 1.2rem;
        width: 100%;
    }
    .hero__img {
        margin-bottom: 7rem;
    }
 }

 @media screen and (max-width: 700px) {
    .navbar .navbar__container, .navbar .mode {
        display: none;
    }

    .navbar {
        margin: 0.2rem 0.8rem;
    }

    .navbar .bar-menu {
        display: flex;
    }

    .navbar .bar-menu img {
        width: 28px;
        height: 28px;
    }

    .hero {
        width: 80%;
        flex-direction: column-reverse;
        gap: 3rem;
    }

    .hero h1 {
        font-size: 3.4rem;
        width: 80%;
    }
    .hero .subtext {
        font-size: 1.2rem;
        width: 100%;
    }
    .hero__img {
        margin-bottom: 7rem;
    }
 }

 @media screen and (max-width: 550px) {
    .navbar .navbar__container, .navbar .mode {
        display: none;
    }

    .navbar .bar-menu {
        display: flex;
    }

    .navbar .bar-menu img {
        width: 28px;
        height: 28px;
    }

    .hero {
        width: 80%;
        flex-direction: column-reverse;
        gap: 3rem;

        margin: 1rem auto;
    }

    .hero h1 {
        font-size: 2.5rem;
        width: 80%;
    }
    .hero .subtext {
        font-size: 1rem;
        width: 100%;
    }

    .hero .button__container .get-started {
        background: #2A4DD0;
        color: #fff;
        width: 6rem;
        height: 2rem;
        border: none;
        border-radius: 10px;
        font-size: 0.7rem;
    }
    
    .hero .button__container .get-live {
        color: #2A4DD0;
        text-decoration: underline;
        text-decoration-thickness: 0.1rem;
        width: 6rem;
        height: 2rem;
        border: none;
        border-radius: 10px;
        font-size: 0.7rem;
    }

    .hero .credits .line {
        display: flex;
        align-items: center;
        font-size: 0.6rem;
        gap: 0.4rem;
    
        color: #909193;
        font-weight: 500;
    }
    
    .hero .credits .line img {
        width: 14px;
        height: 14px;
    }

    .hero__img {
        margin-bottom: 2rem;
    }
    .hero .hero__img img {
        width: 320px;
        height: 320px;
    }
 }