* {
    margin: 0;
    padding: 0;
}


.contenedor { 
    border: 0cm;
    background-color: #ffffff;
        display:grid;
    border-radius: 0px;
    grid-template:
        "header" 240px
        "nav" 40px
        "aside" 400px
   "footer" 40px;
}

.item-2 {
    grid-area: nav;
            font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #debba6, #ff8400);

}


.item-4 {
    grid-area: main;
    background-color:#fef0e9;
    border: 0px solid #fff1f1;
    
    overflow: auto;
}

.item-5 {
    grid-area: footer;
    background: linear-gradient(135deg, #db810b, #d85117);

}

/* Texto del footer */
.item-5 p {
    font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 14px;
    text-align: center;
    color: #000000;
    letter-spacing: 2px;
    opacity: 0.95;
    animation: deslizar 1.4s infinite;
}
        
@media (min-width: 800px) {S
    .contenedor {
        grid-template:
            "header header" 240px
            "nav nav" 40px
            "aside main" 400px
            "footer footer" 40px / 150px auto 0px;
    }
}

@media (min-width: 800px) {
    .contenedor {
        grid-template:
            "header header header" 220px
            "nav main aside" 400px
            "footer footer footer" 40px / 250px auto 0px;
    }
}


h3 {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 35px;
    color: rgb(0, 0, 0);
    font-weight:bold;
    text-align: center;
    text-shadow: 5px 5px 5px rgb(204, 140, 45);
        animation: deslizar 1.2s alternate-reverse;
            transform: translateX(8px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.contenido {
                font-family:'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 18px;
    color: rgb(0, 0, 0);
    text-align:justify;
    padding: 14px;
        padding: 20px;
        line-height: 1.5;
      animation: deslizar 1.5s alternate;
      
}


form {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
}


label {
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 10px;
    font-weight: bold;
}

form > div {
    width: 210px;
}


body {
    max-width: 100%;
    
}

.contenedor, section, div {
    word-wrap: break-word; /* Rompe las palabras muy largas para que bajen */
    overflow-wrap: break-word;
    white-space: normal;   /* Hace que el texto salte de línea como siempre */
}


   
