/* This is a CSS comment. You can provide additional information or explanations here. */

/* Resetting default styles to ensure a consistent starting point */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Applying styles to the body element */
body {
  font-family: monospace, sans-serif;
  background-color: #ffffff;
  color: #333333;
	padding:20px;
}

img {
  padding: 0;
  margin: 0;
}

div {
  padding: 0;
  margin: 0;
}
/* Adding styles to a heading element */
h1 {
  font-size: 24px;
  font-weight: bold;
  color: #000000;
  padding:5px 0px;
}

/* Adding styles to a paragraph element */
p {
  font-size: 16px;
  line-height: 1.5;
  padding:5px 0;
}

ul {
  list-style-type: disc; 
  padding:5px 0;
}

li {
	margin: 0 0 5px 20px;
	list-style-type: disc;
}

ol {
  list-style-type: decimal; /* Default numbering style */
}

.gallery {
  display: flex;
  flex-wrap: wrap;

}

.thumbnails img {
  width:120px;
  height: 120px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
}

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 999;
  text-align: center;
  padding-top: 20px;
}

.lightbox .close {
  color: #fff;
  font-size: 30px;
  position: absolute;
  top: 10px;
  right: 25px;
  cursor: pointer;
}

.lightbox-image {
  max-width: 90%;
  max-height: 80%;
}