@font-face {
    font-family: 'fuentegotica'; 
    src: url('../fuentes/NewRocker-Regular.woff2') format('woff2'); 
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #1a1a1a;
    color: #e0e0e0;
    font-family: 'fuentegotica', serif;
    text-align: center;
    margin: 20px;
    padding: 0;
    line-height: 1.6;
}

body.wiki {
    background-image: url('../imagenes/kaerufumando.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

body.reinosdetemallum {
    background-image: url('../imagenes/mapadetemallum.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

body.especies {
    background-image: url('../imagenes/korkluis.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

body.personajes{
    background-image: url('../imagenes/anokkuroycerveza.webp');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}

h1 {
    color: #91712C;
    background-color: #1a1a1a;
    border: 1px solid #91712C;
    font-size: 70px;
    margin-bottom: 10px;
    padding: 20px;
    letter-spacing: 5px;
    text-shadow: 4px 4px 8px rgb(0, 0, 2);
    transition: color 0.3s, text-shadow 0.3s;
}

h1:hover {
    color: #ffffff;
    text-shadow: 0px 0px 20px rgba(239, 191, 4, 0.4);
}

.titulo{
    text-align: center;
}


h2 {
    color: #91712C;
    font-size: 50px;
    margin-bottom: 10px;
    padding: 10px 0;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    transition: color 0.3s, text-shadow 0.3s;
    text-align: center;
}

h2:hover {
    color: #EFBF04;
    text-shadow: 0px 0px 20px rgba(239, 191, 4, 0.4);
}

h3 {
    color: #91712C;
    font-size: 40px;
    margin-top: 0;
    font-weight: normal;
    font-style: italic;
    opacity: 0.8;
    text-align: center;
}

h4{
    color: #91712C;
    font-size: 30px;
    text-align: center;
}

main {
    background-color: #1a1a1a;
    margin: 40px auto;
    padding: 2rem;
    text-align: left;
    border: 1px solid #91712C;
    font-size: 1.2rem;
    line-height: 1.8;

    border-radius: 4px;
    
    
    
    
}



main.menu {
    text-align: center;
    background-color: black;
    
    width: fit-content;
}



p {
    margin: 10px;
}

hr {
    border: none;
    border-top: 1px solid #91712C;
    margin: 30px auto;
    opacity: 0.5;
}

a {
    color: #91712C;
    text-decoration: none;
    font-size: 1.2rem;
    margin: 0 15px;
    transition: color 0.3s, border-bottom 0.3s, text-shadow 0.3s;
    border-bottom: 1px solid transparent;
    text-align: center;
}

a:hover {
    color: #EFBF04;
    border-bottom: 1px solid #EFBF04;
    text-shadow: 0 0 8px rgba(239, 191, 4, 0.4);
}


.seccion-imagen {
    width: 200px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(145, 113, 44, 0.4));
}


span.huevo {
    color: transparent;
}

span.huevo:hover {
    color: #EFBF04;
    text-shadow: 0px 0px 20px white;
}

footer {
    margin-top: 80px;
    padding: 40px 20px;
    font-size: 0.9rem;
    color: #666666;
}

@media (max-width: 600px) {
    main {
        padding: 1.5rem;
        margin: 10px;
        font-size: 1.1rem;
    }
}

.seccion-con-imagen {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.imagenparawiki{
    height: 300px;
    display: flex;
    align-items: center;
    gap: 2rem;
}

.seccion-texto {
    flex: 1;
}

.seccion-imagen {
    width: 180px;
    flex-shrink: 0;
    filter: drop-shadow(0 0 10px rgba(145, 113, 44, 0.4));
}


@media (max-width: 600px) {
    .seccion-con-imagen {
        flex-direction: column;
        align-items: center;
    }
}