<!--

/* Reset y estilo base */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #000;
}

/* Cabecera */
header {
  background-image: url('https://www.uv.es/sejuanjo/figures/altgry01.jpg');
  background-size: cover;
  background-position: center;
  text-align: center;
  padding: 20px;
}

header h1 {
  font-family: Algerian, sans-serif;
  color: #800080;
  font-size: 2.5rem;
  margin: 0;
}

/* Layout principal */
.layout {
  display: flex;
  min-height: 80vh;
}

/* MenÃš lateral */
nav {
  width: 110px;
  min-width: 80px;
  background-image: url('https://www.uv.es/sejuanjo/figures/altgry01.jpg');
  background-size: cover;
  background-position: center;
  padding: 20px;
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

nav li {
  margin-bottom: 15px;
}

nav a {
  text-decoration: none;
  color: #000;
}

nav a:hover {
  text-decoration: underline;
}

.bold-link {
  font-weight: bold;
}

/* Contenido principal */
main {
  flex: 1;
  padding: 20px;
  background-image: url('https://www.uv.es/sejuanjo/figures/altgry01.jpg');
  background-size: cover;
  background-position: center;
}

main img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

main h1 {
  text-align: center;
  font-size: 2rem;
  margin-top: 20px;
}

/* Info grid (contenido adicional) */
.info-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  text-align: center;
  margin-top: 20px;
}

.info-grid div {
  margin: 10px;
}

/* Marquee animado */
.marquee {
  display: inline-block;
  color: #FF00FF;
  font-weight: bold;
  animation: marquee 5s linear infinite alternate;
  font-size: 1.2rem;
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(50px); }
}

/* Responsive para mÃģviles */
@media (max-width: 768px) {
  .layout {
    flex-direction: column;
  }

  nav {
    width: 100%;
    min-width: auto;
    height: auto;
  }

  main {
    padding: 10px;
  }
}

-->

/* Fondo general */
body {
  margin: 0;
  padding: 20px; /* MÁS espacio en los bordes */
  font-family: Arial, sans-serif;
  background-image: url("https://www.uv.es/sejuanjo/figures/altgry01.jpg");
}

/* Contenedor del menú */
.menu {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  margin: 30px auto; /* separa del borde superior e inferior */
  gap: 12px; /* separación entre botones (clave) */
}

/* Botones */
.menu a {
  display: block;
  padding: 16px; /* más cómodo para tocar */
  background: #f2f2f2;
  border-radius: 12px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: background 0.2s ease;
}

/* Botón INICIO destacado */
.menu a.inicio {
  background: #333;
  color: white;
  font-weight: bold;
}

/* Interacción táctil */
.menu a:active {
  background: #ddd;
}

/* Hover (solo escritorio) */
.menu a:hover {
  background: #e0e0e0;
}

/* Diseño en pantallas grandes */
@media (min-width: 768px) {
  .menu {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .menu a {
    flex: 1 1 45%;
    margin: 5px;
  }
}
