@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:wght@400;700&family=Roboto:wght@400;700&display=swap');

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: 'Roboto', sans-serif; /* Texto: Roboto */
}

.hero {
  background-image: url('../images/fondo.jpg');
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.logo {
  width: 300px;
  height: 300px;
  object-fit: contain;
}

.links {
  margin-top: 20px;
}

.link {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  margin: 0 10px;
  padding: 10px 20px;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  transition: background-color 0.3s;
  font-family: 'Inter Tight', sans-serif; /* Menú: Inter Tight */
}

.link:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

.footer {
  position: absolute;
  bottom: 20px;
  width: 100%;
  text-align: center;
  color: white; /* Este es el color del texto del pie de página */
  font-size: 0.9rem;
  text-shadow: 1px 1px 3px black;
}

/* Nueva regla para los enlaces del pie de página */
.footer-links a {
  color: inherit; /* Hereda el color del elemento padre (.footer) */
  text-decoration: none; /* Quita el subrayado predeterminado del enlace */
  margin: 0 5px; /* Espaciado entre los enlaces */
}

.footer-links a:hover {
  text-decoration: underline; /* Añade subrayado al pasar el ratón para indicar que es un enlace */
}