/* Reset total del navegador */

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

@import url('https://fonts.googleapis.com/css2?family=Kirang+Haerang&display=swap');

body {
    background-color: #ffffff;
    overflow-x: hidden; /* Evita scroll horizontal */
}

.kirang-haerang-regular {
  font-family: "Kirang Haerang", system-ui;
  font-weight: 400;
  font-style: normal;
}


.image-container img {
    width: 100%;
    height: auto;
    display: block; /* Elimina el espacio inferior de las imágenes */
}

/* Estilos del Lightbox */
.lightbox {
    display: none; /* Oculto por defecto */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "Kirang Haerang", system-ui;
}

.lightbox-content {
    text-align: center;
}

.lightbox-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 5px;
}

button {
  border-radius: 50%;
  padding: 0.5em;
  width: 30px;
  height: 30px;
  border: none;
  color: rgb(0, 0, 0);
  position: relative;
top: -20vh;
right: -20vw;
}