body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f2f2f2;
  font-family: "Amiri", serif;
}

.container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.background-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
}

.start-button {
  position: absolute;
  bottom: 10%; /* Posiciona el botón dentro de la imagen */
  left: 50%;
  transform: translateX(-50%);
  padding: 15px 30px;
  background-color: #ffffff;
  border: none;
  border-radius: 25px;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  font-family: "Amiri Bold", serif;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: background-color 0.3s, transform 0.3s;
  z-index: 2; /* Asegura que el botón esté sobre la imagen */
}

.start-button:hover {
  background-color: #f0f0f0;
}

.start-button:active {
  transform: translateY(2px);
}
