body {
  background-image: url("craneo.jpg"); /* Cambia el nombre por tu archivo */
  background-size: cover; /* Que cubra toda la pantalla */
  background-position: center; /* Centrada */
  background-repeat: no-repeat; /* Sin repetir */
  /* Si quieres, deja el color de respaldo también */
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
}

h1 {
  color: #ffffff;
  margin-bottom: 50px;
}
.boton-salir {
  background-color: #b00020;
  color: #fff;
  font-weight: bold;
}

.boton-salir:hover {
  background-color: #d32f2f;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  grid-gap: 20px;
  justify-content: center;
}

.boton {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  background: #e2c20d;
  color: #fff;
  padding: 20px 0;
  border-radius: 10px;
  font-size: 18px;
  font-weight: bold;
  transition: background 0.3s, transform 0.2s;
}

.boton:hover {
  background: #817900;
  transform: translateY(-3px);
}
