@charset "UTF-8";


header a {
  text-decoration: none;
}

  header {
    text-decoration: none;
   width: 100%;
   color: rgb(255, 255, 255);
font-size: 0.45rem;
	line-height: 1.2;
     position: fixed; /* Makes the header sticky */
  top: 0; /* Sticks the header to the top of the viewport */
  z-index: 1000; /* Ensures it stays above other elements */
}


.title {
    display: block; /* Ensures the image doesn't have unexpected gaps */
    width: 100%; /* Adjust as necessary */
    height: auto;
    margin-top: 24px;
     overflow: hidden;

}



body {
 font-family: "Outfit", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;

}




:root {
  --primary-color: #c2c2c2;
  --secondary-color: #ffffff;
}

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

html {
  font-size: calc(25px + 1vmax);
}


h1,
h2 {
  font-size: 1rem;
}

h2:before,
figcaption:before {
  content: '';
  display: inline-block;
  width: 2.61ex;
  height: 1.48ex;
  background-color: currentColor;
  margin: 0 0.4em 0 0;
}

section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
}

section div.title {
  padding: 0.5rem;
  height: 100vh;
  position: sticky;
  top: 0;
   overflow: hidden;
   
}

section div.info {
  padding: 0.5rem;
  min-height: 100vh;
   overflow: hidden;
}

section div.info p,
section div.info figure {
  margin: 1.3rem 0;
}

section div.info p:first-of-type,
section div.info figure:first-of-type {
  margin-top: 0;
}

section div.info p:last-of-type,
section div.info figure:last-of-type {
  margin-bottom: 0;
}

section:nth-child(even) div.title,
section:nth-child(odd) div.info {
  background-color: black;
  color: var(--secondary-color);
}

section:nth-child(1) div.title {
  background-image: url(photo-intro.jpg);
  background-size: cover;
  background-position: 50% 50%;
background-color: black;
  color: var(--primary-color);
}

figcaption {
  font-size: 0.75em;
  margin-top: 0.2rem;
}

img {
  max-width: 100%;
  vertical-align: bottom;
}



h3 {
font-size: 0.45rem;
padding: 20px;
}






@keyframes fade {
  0% {
    opacity: 0;
  }
  100% 
  {
    opacity: 1;
  }
}

.in-view {
animation: fade 1s 1s both;
}





p {
font-size: 0.45rem;
text-align: left; /* For cleaner text blocks */
margin-top: 0.2rem;
}






a:link { text-decoration: underline; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:active { text-decoration: none; }



ul {
  display: flex;
  justify-content: space-between;
  line-height: 0.6em;
   z-index: 1000; 
    margin: 0;
      padding: 10px;
  
}
li {
  display: flex;
  justify-content: space-between;
  line-height: 0.6em;
   z-index: 1000; 
    margin: 0;
      padding: 10px;
}



a {
  color: rgb(255, 255, 255);
}





section.times div {
  display: flex;
  justify-content: space-between;
}

section.times h2:before {
content: "";
display: inline-block;
vertical-align: -0.05em;
margin: 0;
}



 @media (max-width: 800px) {
  section {
    grid-template-columns: 1fr;
  }

header a {
  text-decoration: none;
}

a:link { text-decoration: underline; }
a:visited { text-decoration: none; }
a:hover { text-decoration: underline; }
a:active { text-decoration: underline; }


a {
  color: rgb(255, 255, 255);
}


ul {
  display: flex;
  justify-content: space-between;
  line-height: 0.6em;
   z-index: 1000; 
    margin: 0;
    width: 100%;
      padding: 17px;
      background-color: #c2c2c2;
     color: rgb(255, 255, 255);
  
}
li {
  display: flex;
  justify-content: space-between;
  line-height: 0.6em;
   z-index: 1000; 
      padding: 0px;
      margin: 0;
     color: rgb(255, 255, 255);
}



.title {
    display: inline; /* Ensures the image doesn't have unexpected gaps */
    width: 100%; /* Adjust as necessary */
    height: auto;
    margin-top: 10px;
    background-color: #c2c2c2;
}

header {
  text-decoration: none;
 color: rgb(255, 255, 255);
   height: 50px;
   width: 100%;
font-size: 0.5rem;
  position: fixed; /* Makes the header sticky */
  top: 0; /* Sticks the header to the top of the viewport */
  z-index: 1000; /* Ensures it stays above other elements */
  padding: 20px -20px 40px -100px;
  margin-top: 0px;
}

p {
font-size: 0.5rem;
text-align: left; /* For cleaner text blocks */
margin-top: 0.4rem;
}



  section:nth-child(odd) div.title,
  section:nth-child(even) div.title {
    background-color: #c2c2c2;
    color: rgb(255, 255, 255);
    position: static;
    height: auto;
  }

  section:nth-child(odd) div.info,
  section:nth-child(even) div.info {
    background-color: black;
    color: rgb(248, 246, 246);
  }

  section:nth-child(1) div.title {
    aspect-ratio: 4 / 5;
  }
}