body {
  font-family: "Trykker", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0;
  padding: 1rem;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.site-title {
    display: none;
}

#search {
    display: none;
}

.sub-menu {
    display: none;
}

/* Headers */
h1, h2, h3, h4, h5, h6 {
  font-family: "Goudy Bookletter 1911", serif;
  color: #080808;
}

.custom-cards .card,
.card {
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 2px solid #333;
  border-radius: 12px;
  overflow: hidden;
  margin: 10px;
}

.custom-cards .card-img-top img,
.card img {
  width: 100%;
  height: 250px; /* Adjusted height for card images */
  object-fit: cover;
}

.custom-cards .card-body,
.card-body {
  padding: 15px; /* Adjusted padding for card body */
}

.custom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px;
}

.custom-col {
    flex: 1 1 calc(50% - 10px);
    margin-bottom: 20px;
}

.btn-primary,
.learn-more-button {
  background-color: darkgreen;
  color: #ffffff; /* Set font color to white */
  width: 50%;
  align-self: center;
  margin-top: auto;
  margin-bottom: 10px;
  padding: 10px 20px;
  border: 2px solid darkgreen;
  border-radius: 8px;
  text-align: center;
}

/* Add button hover effect */
.btn {
  background-color: #013220;
  border: 1px solid @gray-light;
  color: #ffffff; /* Set font color to white */
  padding: 0.5rem;
  transition: background-color 0.3s ease;
}

.btn:hover {
  background-color: #024832;
}
/* Navbar */
.navigation {
  height: 300px;
  width: 100%;
  display: flex;
  align-items: center; /* Center vertically */
  justify-content: space-between; /* Space evenly */
  text-transform: uppercase;
  font-size: 1.5rem;
  padding-left: 20px; /* Adjust as needed */
  padding-right: 20px; /* Adjust as needed */
  color: #006400;
  box-sizing: border-box; /* Ensure padding is included in width */
}

.navigation::before {
  content: "";
  width: 415px; /* Adjust width as needed */
  height: 150px; /* Adjust height as needed */
  background-image: url(https://omeka.emich.edu/files/large/52148/Columbian_Banner_x1.jpg);
background-size: cover; /* Adjust as needed */
}

.spacing {
  list-style: none;
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

.spacing li {
  display: inline-block; /* Display list items inline */
}

.spacing li:not(:last-child) {
  margin-right: 20px; /* Adjust spacing between list items */
}

.active {
  font-weight: 700;
}

footer {
    font-size: 14px;
}

/* Card Shadow */
.shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  text-align: center;
}

/* Body Container */
#content {
  padding-left: 15px;
  padding-right: 15px;
}

/* Responsive Sizing */
@media screen and (max-width: 500px) {
  .closed {
    font-size: 2vw;
  }
}

@media screen and (max-width: 475px) {
  .sub-menu li {
    font-size: 2vw !important;
  }
}

/* Item Page Styling */
.media-render {
  margin-bottom: 30px;
  display: block;
  width: 30vw;
  margin-left: auto;
  margin-right: auto;
}

span.title {
  margin-top: 1px;
}

/* Footer */
.frame-bottom {
  padding: 10px;
  margin: 20px 0 0;
}

.frame-bottom .col-lg-12 p {
  margin: 0;
  font-size: 12px;
  color: #717171;
  padding: 0;
}

footer {
  padding-bottom: 0;
}

/* Hide some old menu */
div#content > h3 {
  visibility: hidden;
}

/* Hide labels */
.breadcrumbs,
.hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

div#content > h2 {
  padding-top: 100px;
}

h2 + h3 {
  visibility: hidden;
}

/* Additional styles for the modified structure */
.card img {
  height: 50%;
  object-fit: cover;
}

.card-img-top {
  height: 250px; /* Set a fixed height for all card images */
  object-fit: cover;
}

<style type="text/css">
  /* Additional styles for the modified structure */
  .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 10px solid #d4af37;
    border-radius: 12px;
    overflow: hidden;
    margin: 10px;
  }

  .card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
  }

  /* Custom styling for the two-column layout */
  .custom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 20px; /* Adjust as needed for spacing */
  }

  .custom-col {
    flex: 1 1 calc(50% - 10px); /* Adjust as needed for spacing */
    margin-bottom: 20px; /* Adjust as needed for spacing */
  }

  /* Style for the Learn more button */
  .btn-primary {
    color: white; /* Set the font color to white */
  }

  /* Set white font color for "Learn more" buttons */
  .card .btn-primary {
    color: white;
  }
   /* New styles for the Read more buttons */
    .card__btn {
        background-color: green;
        color: white;
        text-align: center;
        display: block;
        width: 100%;
        padding: 10px;
        border-radius: 5px;
}
</style>
/* Accordion Menu */
*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

.page__wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
    height: auto;
}

.heading {
    color: #fff;
    letter-spacing: 5px;
    font-size: 2.6em;
    margin-bottom: 30px;
    padding: 0px 15px;
}

.accordion {
    max-width: 90vw;
    width: calc(100% - 40px);
}

details {
    position: relative;
    background-color: #145314; /* Button color */
    margin-bottom: 10px;
    filter: drop-shadow(5px 5px 0px #0A0A0A);
    width: 100%;
}

details:hover {
    filter: drop-shadow(5px 5px 4px #0A0A0A);
}

details > summary {
    color: #d9e0d3;
    padding: 5px 10px;
    font-size: 1.3em;
    cursor: pointer;
}

details > p {
    color: #000; 
    font-size: 1.1em;
    padding: 10px 20px;
    background-color: #f0f0f0; /* Light gray for the dropdown section */
    border: none; /* Remove border */
    margin: 0; /* Remove default margins */
    line-height: 1.5; /* Ensure consistent spacing between paragraphs */
}

details[open] > p {
    display: block;
}
/* Buttons */
/* Global CSS */
* {
  box-sizing: border-box;
}

/* Button Wrapper */
.wrapper {
  display: flex;
  justify-content: flex-start; /* Align button to the left */
}

/* Button Styles */
/* Your CSS Styles */

/* Global CSS */
* {
  box-sizing: border-box;
}

/* Button Wrapper */
.wrapper {
  display: flex;
  justify-content: center; /* Center buttons horizontally */
  margin-bottom: 20px; /* Add margin for spacing between buttons */
}

/* Button Styles */
.cta {
  display: inline-block;
  text-align: center;
  padding: 10px 20px; /* Adjusted padding for mobile */
  text-decoration: none;
  font-size: 18px; /* Reduced font size for mobile */
  color: white;
  background: #145314;
  transition: 0.5s; /* Reduced transition time for hover effect */
  box-shadow: 4px 4px 0 black; /* Adjusted box shadow */
  width: 100%; /* Make buttons full width on mobile */
  margin-bottom: 10px; /* Add margin between buttons */
}

.cta:focus {
  outline: none; 
}

/* Text Styles */
.cta span:last-child {
  margin-left: 18px; /* Adjusted margin for mobile */
}

/* Hover Effect */
.cta:hover {
  box-shadow: 8px 8px 0 #FBC638; /* Adjusted box shadow */
}

.cta:hover path.three {
  animation: color_anim 1s infinite 0.2s;
}

.cta:hover path.one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.cta:hover path.two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* Media Query for Mobile */
@media only screen and (max-width: 600px) {
  .wrapper {
    flex-direction: column; /* Stack buttons vertically on small screens */
  }