
* {
  margin: 0;
  padding: 0;
  list-style: none;
  text-decoration: none;
  box-sizing: border-box;
}


html, body {
  background: #c6ddf7;
  height: 100%;
  max-width: 100%;
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  color: #000;
  padding: 10px;
  margin: 0;
}

th, td {
  margin: 5px;
  padding: 15px;
}

a:link {
  color: darkblue;
  background-color: transparent;
/*  font-size: 16px;*/
/*   text-decoration: none;*/
}


a:hover {
  color: blue;
  background-color: transparent;
  text-decoration: underline;
}

p {
  display:inline;
}

p::first-letter {
  font-size: 120%;
  color: blue;
  font-weight: bold;
}

.gallery-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery-container img {
  width: 200px;
  /* here is the image width */
  height: 200px;
  /* here is the image height */
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}

.gallery-container img:hover {
  /* here you can change the hovering effect of an images */
  transform: scale(1.05);
}

.gallery-container2 {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}

.gallery-container2 img {
  width: 300px;
  /* here is the image width */
  height: 200px;
  /* here is the image height */
  object-fit: cover;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s ease-in-out;
}

.gallery-container img:hover2 {
  /* here you can change the hovering effect of an images */
  transform: scale(1.05);
}


/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  /* width of lightbox */
  width: 100vw;
  /* height of light box */
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}

.lightbox img {
  /* here is the images side inside the lightbox when it get open */
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
}

.lightbox:target {
  display: flex;
}
