body {
    font-family: sans-serif;
    background-color: white;
    position: relative;
    padding-bottom: 264.5px;
}

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #6E6E6E;
    border-radius: 10px;
    padding: 10px 20px;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px; /* Espacio entre el logo y el texto */
}

.logo img {
    height: 50px;
    border-radius: 10px;
}

.logo h2 {
    margin: 0;
    color: #D897DE;
    font-size: 18px;
}

nav {
    display: flex;
    gap: 15px;
}

nav a {
    text-decoration: none;
    color: #D897DE;
    font-weight: 600;
}

#novedades{
    width: 90%;
    max-width: 1100px;
    margin: 50px auto;
    border-radius: 20px;
    text-align: center;
    background-color: black;
    color: #D897DE;
    padding: 20px;
    box-sizing: border-box;
}

p {
    margin: 0 0 15px;
    line-height: 1.6;
}

footer {
    height: 55px;
    position: absolute;
    bottom: 0;
    font-family: sans-serif;
    background-color: #6E6E6E;
    border-radius: 10px;
    text-align: center;
    color: #D897DE;
    font-weight: 600;
    width: 99%;
}
footer p {
    color: #D897DE;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    position: relative;
    top:20px
}




/* Media Queries para pantallas pequeñas */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    nav {
        flex-direction: column;
        gap: 10px;
    }

    #novedades{
        padding: 15px;
    }

    footer {
        font-size: 14px;
    }
}

/* Media Queries para pantallas muy pequeñas (móviles) */
@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    .logo h2 {
        font-size: 16px;
    }

    nav a {
        display: block;
        font-size: 14px;
        margin: 5px 0;
    }

    #novedades{
        padding: 10px;
    }

    footer {
        font-size: 12px;
    }
    footer p{
        position:relative;
        top: 15px;
    }
    body {
        font-family: sans-serif;
        background-color: white;
        position: relative;
        padding-bottom: 264.5px;
    }
}