html, body{
  height: 100%;
  margin: 0;
  padding: 0;
  background-color: black;
}

.navbar{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  position: relative;
  z-index: 3;
}

.navbar a{
  color: white;
  text-decoration: none;
  margin-left: 1rem;
}

.navbar a.red{
  color: #F22F1D;
}

.kusama{
  font-family: "Outfit", sans-serif;
  text-align: left;
  font-size: 56px;
  font-weight: 700;
}

.red{
  color: #F22F1D;
}

.nav-right{
  font-family: "Outfit", sans-serif;
  font-size: 32px;
  font-weight: 700;
  word-spacing: 2rem;
}

footer{
  position: fixed;
  bottom: 0;
  width: 100%;
  text-align: center;
  padding: 1rem 0;
  background-color: black;
  z-index: 5;
}

.footer_text{
  font-family: "Outfit", sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: white;
}

main{
  padding-bottom: 100px;
}

h1{
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  margin-bottom: 0.25rem;
}

h2{
  font-family: "Outfit", sans-serif;
  font-size: 25px;
  font-weight: 700;
  color: white;
  margin-top: 0;
}

h3{
  font-family: "Outfit", sans-serif;
}

main p{
  font-family: "Outfit", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: white;
  padding-right: 1rem;
  text-align: center;
  margin-top: -0.5rem;
}

.text-block{
  width: 50%;
  margin-right: 2rem;
}

.current_events{
  font-family: "Outfit", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: white;
  text-align: center;
}

.gallery{
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 2rem;
}

.gallery-item{
  flex: 0 0 23%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.gallery-item h3{
  height: 48px;
  overflow: hidden;
  text-align: center;
  margin-top: 0.5rem;
  font-size: 20px;
  font-weight: 700;
  color: white;
  align-items: center;
  justify-content: center;
}

.gallery img{
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center;
}

.lightbox{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
}

.lightbox.active{
  opacity: 1;
  pointer-events: initial;
}

.lightbox-content{
  position: absolute;
  top: 50%;
  left: 50%;
  max-height: calc(100% - 6em);
  max-width: calc(100% - 6em);
  transform: translate(-50%, -50%);
}

.lightbox-back{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}

.lightbox-content img{
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
}

.lightbox-content::after{
  content: '\000D7';
  position: absolute;
  top: -2em;
  right: -2em;
  width: 2em;
  height: 2em;
  line-height: 2em;
  text-align: center;
  background-color: white;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  border-radius: 2em;
  pointer-events: none;
}

.events{
  color: #F22F1D;
}