hr {
	width: 750px;
  margin-left: 0px;
}

h2 {
  font-size:32px;
  font-style: italic;
  margin-bottom: 10px;
}

h3 {
  font-size: 24px;
  text-decoration: underline;
  text-decoration-thickness: 1px;
}

p {
  display: block;

}

body {
  background-color: black;
  color: white;
} 


/*----------------------------- GALERIA*/

#gallery {
  max-width: auto;
  margin: 0px 20px;
}

.container-g {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: stretch;
  justify-content: flex-start;
  margin: 15px;
  column-gap: 0px;

}

.item {
  max-width: 700px;
  max-height: 450px;
  background-color: darkgray;
  margin: 15px;
}

.fullscreen-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.95);
  display: flex;
  justify-content: center;
  align-items: center;
}

.img-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 95vw;
  max-height: 95vh;
}

.fullscreen-modal img {
  max-width: 95vw;
  max-height: 95vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 0 20px #000;
  border-radius: 10px;
}

.close-btn {
  position: fixed;
  top: 40px;
  right: 60px;
  color: #fff;
  font-size: 3em;
  font-weight: bold;
  cursor: pointer;
  z-index: 10001;
  user-select: none;
  background: rgba(0,0,0,0.5);
  border-radius: 50%;
  padding: 0 18px;
  transition: background 0.2s;
}
.close-btn:hover {
  background: rgba(0,0,0,0.8);
}