
body {
    margin: 0;
    font-family: Arial, sans-serif;
}
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background-color: #18213b;
    padding: 30px 20px;
}
.logo {
    color: white;
    font-size: 20px;
    text-decoration: none;
    font-weight: bold;
}
.nav-links {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}
.nav-links li {
    margin: 0 15px;
}
.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 25px;
    transition: color 0.3s;
}
.nav-links a:hover {
    color: #f4a261;
}
.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #333;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }
    .nav-links.active {
        display: flex;
    }
    .menu-icon {
        display: block;
    }
}

.page-header {
    text-align: center;
    padding: 20px;
    background: white;
    color: #057bab;
    font-size: 28px;
}


.content {
    display: flex;
    justify-content: space-around;
    padding: 20px;
    background: #f8f8f8;
    width: 80%;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.characteristics {
    width: 50%;
}

.characteristics_text > * {
    padding: 0 20px;
}

.characteristics > :first-child {
    font-size: 35px;
    color: black;
    text-align: left;
    font-weight: 700;

}

.characteristics span{
    font-size: 22px;
    font-weight: 700;
}

.characteristics p{
    font-size: 22px;
}

.image-container {
    width: 40%;
}
.image-container img {
    width: 100%;
    border-radius: 10px;
}

.information {
    width: 80%;
    padding: 20px;
    margin: 20px auto;
}

.information h2{
    font-size: 30px;
    font-weight: 700;
    
}

.information-andromeda{
    font-size: 1.4em;
}

.information p {
    font-size: 1.4rem;
}

.information img {
    width: 100%;
}

.information span {
    font-size: 1.4rem;
    color: gray;
}

@media (max-width: 1496px){
    
    .image-container img {
        max-width: 1200%;
    }
}

@media (max-width: 992px) {
    .content {
        flex-direction: column;
        align-items: center;
        /* text-align: center; */
    }

    .characteristics, .image-container {
        width: 100%;
    }

    .characteristics p,
    .information p {
        font-size: 20px;
    }

    .image-container img {
        max-width: 100%;
    }

    .information {
        width: 90%;
    }
}


@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        background-color: #333;
        top: 60px;
        left: 0;
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-icon {
        display: block;
    }

    .page-header {
        font-size: 24px;
    }

    .characteristics > :first-child {
        font-size: 28px;
    }
}

@media (max-width: 600px) {
    .page-header {
        font-size: 22px;
    }

    .characteristics > :first-child {
        font-size: 26px;
    }

    .characteristics p,
    .information p {
        font-size: 18px;
    }

    .information h2 {
        font-size: 24px;
    }

    .image-container img {
        max-width: 100%;
    }
}

