body {
    background-color: #101324;
    color: white;
    font-family: 'Outfit';
    /* margin: 0; */
}

.header {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 16px;

}

.header img {
    width: 120px;
    height: 70px;
}

.header ul {
    list-style-type: none;
    display: flex;
    justify-content: center;
    gap: 50px;
    /* to exactly center the list between logo and download button. */
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    font-size: larger;
    color: white;
}

.header ul a:hover {
    color: #FAAB4E;
}

.download,
.download-mw {
    background-color: #FAAB4E;
    padding: 10px;
}

.download {
    border-radius: 15px;
}

.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.hero img {
    height: 500px;
    width: 500px;
    /* max-width: 100%;  */
}

.hero .description {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.description .title {
    font-size: 60px;
    font-weight: bold;
    margin: 0;
    padding: 0;
}

.description .motivation {
    font-size: 30px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}

.buttons {
    display: flex;
    gap: 20px;
    font-size: 15px;
}

.watch-trailer,
.download-mw {
    border-radius: 20px;
}

.watch-trailer {
    background-color: transparent;
    border: 2px solid white;
    padding: 10px;
}

.download:hover,
.download-mw:hover,
.watch-trailer:hover, .hero img:hover{
    filter: drop-shadow(0px 2px 5px #ffffffce);
}

.features {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.propertie {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.propertie img {
    width: 350px;
    height: 220px;
    border-radius: 10px;
    filter: drop-shadow(2px 1px 4px #ffff);
    max-width: 100%;
}

.propertie img:hover {
    filter: none;
}

.img-description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0;
    padding: 0;
}

.img-description-title {
    color: #FAAB4E;
    padding: 0;
    margin: 0;
}

.footer {
    background-color: #171A2D;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 40px;

}

.information {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.developer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.developer img {
    width: 120px;
    height: 162px;
}

.contact {
    display: flex;
    flex-direction: column;
}

.email {
    display: flex;
    gap: 10px;
}

.email img {
    width: 20px;
    height: 20px;
}

.contact p a:hover{
    color: rgb(125, 163, 251);
}

.mobile-nav-bar,
.mobile-menu {
    display: none;
}


@media (max-width: 600px) {
    .header {
        display: none;
    }

    .mobile-nav-bar {
        display: flex;
        justify-content: space-between;
        padding: 16px;
    }

    .logo {
        width: 120px;
        height: 70px;
    }

    .hamburger-icon {
        height: 40px;
        width: 40px;
        margin-top: 20px;
    }

    .hamburger-icon.active {
        display: none;
    }

    .cross-icon {
        display: none;
        height: 30px;
        width: 30px;
        margin-top: 25px;
    }

    .cross-icon.active {
        display: block;
    }

    .mobile-menu {
        display: none;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        list-style-type: none;
        padding: 0;
        margin: 0;
        font-size: 20px;
    }

    .mobile-menu.active {
        display: flex;
    }

    /* .main-content.active{
        display: none;
    } */

}