/*************************************************************************************************
                                estilos del index.php
*************************************************************************************************/
.divo {
    text-align: center;
    font-size: 7em;
    text-transform: uppercase;
    color: brown;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100vh;
    padding-top: 10%;
    background-color: rgba(88, 158, 74, 0.493);
}

.banner1 {
    width: 100%;
    height: 60px;
    margin: 0px;
    padding: 0px;
}

#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px; /* Igual al alto de la imagen */
    background-image: url('../img/banner.png');
    background-size: 100% 100%;       /* Escala la imagen exactamente al tamaño del header */
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 20px;
  }
  
  
  main {
    margin-top: 70px; /* Igual a la altura del header */
  }  

  nav {
    width: 100%;
    display: flex;
    justify-content: flex-end; /* Alinea los ítems a la derecha */
    padding: 10px 20px;
    background-color: transparent; /* Fondo del nav (opcional) */
    
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 15px;
  }
  
  nav li a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #00ff00;
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1em;
    cursor: pointer;
    box-shadow: 0 0 10px #00ff00;
    text-decoration: none;
    transition: background-color 0.3s ease;
  }
  
  nav li a:hover {
    background-color: #00cc00;
  }
  
  
/**************************************fin de los estilos de index************************************************/

/************************************** estilos generales de toda la pagina **************************************/

body {
    background-color: #000;
    color: aliceblue;
    background-image: url('../Profe_alejo.png');
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: 100vh;
    background-position-x: center;
    margin: 0px;
}
h1, h2 {
    text-align: center;
    text-transform: uppercase;
}

div a {
    display: inline-block;
    padding: 10px 20px;
    margin: 5px;
    background-color: #00ff00;       /* Verde neón */
    color: #000;                      /* Texto negro */
    text-decoration: none;
    font-weight: bold;
    font-size: 1em;
    border-radius: 5px;
    border: solid 2px #000;
    box-shadow: 0 0 10px #00ff00;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }
  
  div a:hover {
    background-color: #00cc00;       /* Verde más oscuro al pasar el mouse */
    transform: scale(1.05);          /* Efecto de crecimiento sutil */
  }
  .menu-links {
    text-align: center; /* o right, si prefieres alineado a la derecha */
    margin-top: 80px;   /* para que no se superponga con el header fijo */
    background-color: rgba(255, 254, 254, 0.233);
  }
