body {
    background-color: #FDF1F5;
}

header {
    background: linear-gradient(135deg, #b69c95 0%, #b69c95  100%);
    max-width: 900px;
    /*centar elemento*/
    margin: 18px auto; 
    padding: 20px 16px; /*ancho del elemento*/
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

header h1 {
    margin: 0;
    font-size: 1.2rem;
    color: #2b2b2b;
    font-weight: 700;
    letter-spacing: 0.2px;
}
header h1 {
    margin: 0;
    font-size: 1.2rem;
    color: #2b2b2b;
    font-weight: 900;
    letter-spacing: 0.2px;
    font-family: "Times New Roman", Times, serif;}
  
/* Secciones en recuadro con color y texto blanco (Times New Roman) */
section {
    max-width: 900px;
    margin: 18px auto;
    padding: 16px;
    border-radius: 12px;
    color: #ffffff;
    font-family: "Times New Roman", Times, serif;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-left: 6px solid rgba(255,255,255,0.12);
}

/* Colores distintos por sección */
#programacion {
    background: linear-gradient(135deg, #b69c95 0%, #b69c95 100%);
}
#redes {
    background: linear-gradient(135deg, #d4c8b7 0%, #d4c8b7 100%);
}
#estructura {
    background: linear-gradient(135deg, #d685a7 0%, #d685a7 100%);
}
#tecnologia {
    background: linear-gradient(135deg, #3f2d15 0%, #3f2d15 100%);
}

/* Encabezados y lista dentro de las secciones */
section h2 {
    margin: 0 0 10px 0;
    color: #ffffff;
    font-family: "Times New Roman", Times, serif;
}
.submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 8px;
}
.submenu li {
    background: rgba(255,255,255,0.08);
    padding: 8px 12px;
    border-radius: 8px;
    color: #ffffff;
}
.submenu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-family: "Times New Roman", Times, serif;
}
.descripcion {
    display: block;
    opacity: 0.95;
    font-size: 0.9rem;
    font-family: "Times New Roman", Times, serif;
}
nav{
    background-color: #b69c95;
}
nav ul{
    display: flex;
    justify-content: center;
}
nav ul li{
    list-style: none;
    margin: 0 15px;
    
}
nav ul li a{
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-family: "Times New Roman", Times, serif;
}

