* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  font-family: Arial, sans-serif;
  background-image: url('/images/Fondo2.png'); /* Ruta relativa */
  background-repeat: repeat; /* Repite el patrón */
  background-size: auto; /* Ajusta el tamaño */
  background-position: center; /* Centra el patrón */
}

.container {
  text-align: center;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

.logo {
  max-width: 300px; /* Aumentamos el tamaño máximo de la imagen */
  height: auto;
  margin-bottom: 20px;
}

h1 {
  margin-bottom: 20px;
  color: #2c5f2d;
  font-size: 1.8em;
}

.start-button {
  display: inline-block;
  padding: 8px 40px; /* Hacemos el botón más pequeño */
  font-size: 1em; /* Reducimos el tamaño de la fuente */
  color: #fff;
  background-color: #b4e197;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.start-button:hover {
  background-color: #1f3f1d;
}
