body {
  background-color: black;
 }
 
  h1 { 
  font-family: "Pirata One", system-ui;
  font-weight: Bold;
  font-style: normal;
  font-size: 70px;
  color: #D6D0C9;
  margin: -5px;
  margin-bottom: 5px;
}

  h2 { 
  font-family: "EB Garamond", serif;
  font-weight: 700;
  font-style: normal;
  color: #D6D0C9;
  margin: -5px;
  margin-bottom: 0px;
  }
  
p {
  color: #D6D0C9;
  font-family: "EB Garamond", serif; 
  float: left;
  text-indent: 20px;
  text-align:left;
  margin: 10px;
  font-size: 14px; 
}

  ::selection {
background: darkred;
color: #FFFFFF; 
}

.gallery {
  padding: 1px;
}

.gallery-item {
  position: sticky;
  width: 100px;
  height: 100px;
  margin: 2.5px;
  cursor: pointer;
}

.gallery-item:hover {
  outline: solid #D6D0C9 2px;
}

/* The Modal (background) */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease;
}

/* Modal content (image) */
.modal-content {
  position: relative;
  height: auto;
  max-width: 800px;
  max-height: 650px;
  border-radius: 5px;
  overflow: hidden;
}

.modal.show {
  display: flex;
  opacity: 1w;
}

/* Close button */
.close {
  position: absolute;
  top: 10px;
  right: 15px;
  color: #ffffff;
  font-size: 60px;
  font-weight: bold;
  cursor: pointer;
}

/* Caption of modal image */
.caption {
  position: absolute;
  bottom: 15px;
  width: 100%;
  text-align: center;
  color: #ffffff;
  font-size: 24px;
}