/* Reset rápido */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Raleway", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
  background-color: #000000 !important;
    color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;

  /* Imagen de fondo estática */
  background: url("../img/background.jpg") no-repeat center center fixed;
  background-size: cover;
}

.container {
  text-align: center;
  max-width: 900px;
  padding: 1rem;
}

.logo img {
  max-width: 250px; /* ajusta según tamaño de tu logo */
  height: auto;
  margin-bottom: 1.5rem;
}

.evento-img {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

/* Botón */
.btn {
  display: inline-block;
  padding: 0.8rem 1.6rem;
  background: #8525f4;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  border-radius: 24px;
  transition: background 0.3s ease;
}

.btn:hover {
  background: #d73080;
}
