* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    padding-top: 60px;
  }
  .container {
    max-width: 900px;
  }
  .header-section {
    margin-bottom: 40px;
  }
  .nav-link {
    color: #333;
  }
  .section-title {
    margin-top: 40px;
    border-bottom: 2px solid #ccc;
    padding-bottom: 10px;
  }
  .image-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  .image-container img {
    max-width: 100%;
    height: auto;
  }
  .description {
    text-align: center;
    font-style: italic;
    margin-bottom: 20px;
  }

h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 columns */
  gap: 20px; /* Space between the items */
}

/* Styling for each gallery item */
.gallery-item {
  background-color: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* Make the images larger and responsive */
.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* Ensure the layout adjusts well on smaller screens */
@media (max-width: 767px) {
  .gallery {
      grid-template-columns: 1fr; /* 1 column on smaller screens */
  }
}

.big-img {
  width: 600px;
  height: 600px;
  border: 2px solid black;
  background-image: url('assets/CROPPED_Colorized_emir.tif.jpg');
  background-size: cover;
  background-position: center;
}
.caption {
    padding: 10px;
    font-size: 16px;
    background-color: #333;
    color: white;
}


.image-row {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.image-item {
  text-align: center;
  max-width: 30%;
}

.image-item img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.caption {
  padding-top: 10px;
  font-style: italic;
}

math {
  font-size: 2em; /* Make the math expression larger */
  line-height: 1.5em; /* Increase line spacing */
  margin-top: 20px;
  margin-bottom: 20px;
}

mfenced {
  padding: 0.5em; /* Add some padding for better spacing */
}

mtable {
  margin-left: 0.5em;
  margin-right: 0.5em;
}

mtd {
  padding: 0.3em; /* Space out the table elements */
}
.wide-image-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.wide-image {
  max-width: 100%;
  height: auto;
}