
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,100..900;1,9..144,100..900&family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');


h1 {
  font-family: Fraunces, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 2.8em;
  line-height: 1;
}

h2 {
  font-family: Fraunces, "Times New Roman", Times, serif;
  font-weight: 500;
  font-size: 2.2em;
  line-height: 1;
}

a {
  color: #508080;
}

.cr-section .scale-to-fill img {
  max-width: 75%; /* Adjust width of the image */
  height: auto; /* Maintain aspect ratio */
  margin: 0 auto; /* Center the image */
  display: block; /* Ensure proper centering */
  border-radius: 8px; /* Optional: Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add shadow for styling */
}

.cr-section .narrative-col {
  padding: 20px; /* Add spacing around text */
  max-width: 800px; /* Ensure the text is not too wide */
  margin: 0 auto; /* Center the text */
}

.cr-section .sticky-col {
  padding: 10px;
}

[hidden] {
  display: none;
}


.sticky-col img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}

.custom-may {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.may-text {
  position: sticky;
  top: 20vh;
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  margin: 20px;
  border-radius: 8px;
  max-width: 600px;
}

.may-images {
  position: relative;
  z-index: 1;
}

.may-image {
  margin: 100vh 0;
  width: 100%;
  height: auto;
}

.grid {
  display: grid;
  grid-template-columns: 40% 60%;
}

.left-column {
  position: sticky;
  top: 20vh;
  height: fit-content;
  background: #333333;
  color: white;
  padding: 2rem;
}

.right-column {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2rem;
}

.right-column img {
  width: 100%;
  height: auto;
  display: block;
}


a {
  color: white !important; /* Ensures all hyperlinks are white */
  text-decoration: underline; /* Optional: keep underline for visibility */
}

a:hover {
  color: #cccccc !important; /* Optional: a lighter color when hovered */
