/* ===== RESET BÁSICO ===== */
body {
    margin: 0;
    padding: 0;
    background-image: url("imagenes/giffondo.gif");
    background-size: cover;
    background-repeat: repeat;
    background-attachment: fixed;
    font-family: 'Pixelify Sans';
}

/* ===== CONTENEDOR PRINCIPAL ===== */
.container {
    background-color: #0e0101;
    width: 1000px;
    height: auto;
    border-radius: 25px;
    border-style: solid;
    border-color: #efeacd;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    
    margin: 20px auto;
}

/* ===== TÍTULO ===== */
.titulo {

    text-align: center;
    font-size: 50px;
    background-color: #350303;
    border: 3px solid #efeacd;
    border-radius: 8px;
    color: white;
    margin-bottom: 20px;
}

/* ===== MENÚ ===== */
nav {
    margin-bottom: 20px;
}

.navigation-button {
    display: block;
    width: 150px;
    height: 17px;
    padding: 12px;
    background-color: #350303;
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 6px;
    border: 3px solid #efeacd;
    text-decoration: none;
}

.navigation-button:hover {
    background-image: url(imagenes/ojo.gif);
    background-repeat: repeat;
    background-size: 45px 40px;
}

.navigation-button2 {
    display: block;
    width: 150px;
    height: 17px;
    padding: 12px;
    background-color: #350303;
    color: #ffffff;
    text-align: center;
    border-radius: 5px;
    font-weight: bold;
    margin-bottom: 6px;
    border: 3px solid #efeacd;
    text-decoration: none;
}

.navigation-button2:hover {
    background-image: url(imagenes/descarga\ \(11\).jpg);
    background-repeat: repeat;
    background-size: 180px 50px;
}

/* ===== LAYOUT PRINCIPAL =====  #7a0a0a */
.layout {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.layout2 {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

/* ===== CAJAS DE TEXTO LATERALES ===== 
*/
.texto2 {
    font-family: 'Pixelify Sans';
    text-align: center;
    background-image: url(imagenes/cora10.jpg);
    background-repeat: repeat;
    background-size: contain;
    background-color: #000000;
    border: 3px solid #efeacd;
    border-radius: 5px;
    height: 280px;
    width: 190px;
    overflow-y: scroll;
    color: black;
    padding: 10px;
}

/* ===== TEXTO CENTRAL ===== */
.textocentro {
    font-family: 'Pixelify Sans';
    background-image: url(imagenes/descarga\ \(12\).jpg);
    background-size: cover;
    background-color: #000000;
    border: 3px solid #efeacd;
    border-radius: 30px;
    padding: 10px;
    height: 280px;
    width: 540px;
    overflow-y: scroll;
    color: white;
    text-align: center;
}

.texto3 {
    background-image: url(imagenes/descarga\ \(16\).jpg);
    background-size: cover;
    color:#ffffff;
    text-align: center;
    background-color: #350303;
    border-radius: 15px;
    border-color: #efeacd;
    border-style: solid;
    border-width: 3px;
    padding: 10px;
    width: 350px;
    height: 230px;
    overflow-y: scroll;
}

.texto4 {
    background-image: url(imagenes/descarga\ \(16\)).jpg);
    background-size: cover;
    color: #ffffff;
    background-color: #350303;
    border-radius: 15px;
    padding: 10px;
    border: 3px #efeacd;
    border-style: solid;
    overflow-y: scroll;
    width: 350px;
    height: 230px;
}
/* ===== SELECCIÓN ===== */
::selection {
    background: #ffffff;
    color: #6e0606;
}

