header {
    width: 100%; /* Establece el ancho al 90% del ancho de la pantalla */
    max-width: 100vw; /* Establece el ancho máximo al ancho de la ventana del navegador */
    box-sizing: border-box; /* Incluye el padding en el ancho total */
    padding: 0; /* Elimina cualquier padding */
    margin: 0 auto; /* Centra el encabezado horizontalmente */
    background-color:  #fcfbfb;
}
#header-image {
    max-width: 100%; /* Establece el ancho máximo al 100% del contenedor */
    height: auto; /* Ajusta la altura automáticamente para mantener la proporción */
}
nav {
    font-family: 'Fredoka One', sans-serif; 
    display: flex;
    justify-content: center; 
    background-color:#fcfbfb;
    color: #2a2a2a !important;
}

nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-right: 1.25rem; /* 20px */
}

nav ul li:last-child {
    margin-right: 0;
}

nav ul li a {
    text-decoration: none;
    color: #000;
    font-size: 1.25rem; /* 20px */
    font-weight: 900; 
}

nav ul li a:hover {
    text-decoration: underline;
    color: #e64747; 
}

body {
    background-color: #fcfbfb; 
    max-width: 100%; /* Establece el ancho máximo al 100% */
    margin: 0; /* Elimina el margen predeterminado */
    padding: 0; /* Elimina el relleno predeterminado */
}

main {
    background-color: #fcfbfb; 
    font-size: 1.25rem; /* 20px */
    
    font-family: 'Roboto Slab', serif; 
    color: #2a2a2a; 
    text-align: justify;
}

main p.main-paragraph {
    display: inline-block;
    margin: 0 3.75rem; /* 60px */
}

#bienvenidos {
    margin-left: 40.625rem;/* 650px */
    font-size: 1.5rem; /* 24px */
    color: transparent;
    background-image: linear-gradient(to right, #e64747, #e64747 5%, #1cedae 5%, #1cedae);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 5rem; /* 80px */
    margin-top: 5.625rem; /* 90px */
}

main img {
    max-width: 20%;
    height: 20%;
    display: block;
    margin: 1.25rem 1.25rem 1.25rem 0; /* 20px */
    float: left;
}

footer {
    background-color: #ffe5ad;
    padding: 1.25rem; /* 20px */
    text-align: center;
    font-family: Arial, sans-serif;
    color: #333;
    margin-top: 12.5rem; /* 200px */
    height: 5rem; /* 80px */
    
}

@media screen and (max-width: 768px) {
    /* Estilos para pantallas pequeñas */
}






