@import url('https://fonts.googleapis.com/css2?family=Roboto&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* Estilos generales del nav */
nav {
    height: 7vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333; /* Cambié el color de fondo a un tono más oscuro */
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.2); /* Agregué sombra en la parte inferior */
}
  
  /* Estilos para los enlaces en el nav */
nav a {
    text-decoration: none;
    color: white;
    font-family: 'Georgia', sans-serif;
    padding: 10px;
    border-radius: 3px;
    transition: background-color 0.3s, color 0.3s;
}
  
  /* Estilos para los enlaces dentro del div en el nav */
nav div a {
    font-weight: bold;
    text-shadow: 0 0 #0000;
}
  
  /* Cambié el hover para los enlaces dentro del div en el nav */
nav div a:hover {
    background-color: #777; /* Cambié el color de fondo al pasar el mouse */
    color: black;
    box-shadow: 0 0 #0000;
}
  
  /* Estilos para el enlace especial (pag-of) en el nav */
#pag-of {
    font-weight: bold;
    background-color: black;
    box-shadow: -2px 2px 2px rgba(0, 0, 0, 0.2), 2px 2px 2px rgba(0, 0, 0, 0.2);
}
  
  /* Cambié el hover para el enlace especial (pag-of) en el nav */
#pag-of:hover {
    background-color: rgb(86, 103, 124);
    color: black;
    box-shadow: inset 0 2px 4px 0 rgba(0, 0, 0, 0.1);
}

#titulo {
    width: 50%;
    margin-left: 50px;
}

#paginas {
    width: 50%;
    display: flex;
    justify-content: space-around;
    align-items: center;
}