body {
  font-family: "Helvetica Neue", sans-serif;
  font-size: 10pt;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
max-width: 100vw; /* Adjust this value as needed */
    overflow-x: hidden; /* Hide horizontal scrollbar */
letter-spacing: 10%;
	transition: background-color 0.5s ease;
	bottom: 0;

}

.carousel-caption {
  position: fixed;
  bottom: 2%;
  left: 2%;
  margin: 0;

  color: white;
  background: rgba(0, 0, 0, 0);
	mix-blend-mode: difference;
  border-radius: 4px;
  z-index: 1000;
  max-width: 90%;
  pointer-events: none;
	 transition: opacity 0.5s ease;
	font-size: 1vw;
	letter-spacing: -0.01rem;
 
	
}


#carousel-caption.fade-out {
  opacity: 0;
}

a {
  text-decoration: underline;
  color: white;
  mix-blend-mode: difference;
  position: relative; /* Allow the link to sit above other elements */
  z-index: 10; /* Ensure the link is clickable and not covered */
}

a:hover, a:active, a:visited {
  color: white; /* Ensure text is visible */
  mix-blend-mode: difference;
}



.svg-container {
  margin-top: 0;
  width: 100vw;
  max-width: 100%;
  height: auto;
  align-self: flex-start;
	  color: white; /* Ensure text is visible */

}




.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensure the fixed element is on top */
}





video {
  max-width: 100%;
  object-fit: cover;
  animation: play-loop 20s infinite;
  object-position: center;
}






.overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(5px);
  
    z-index: 1000;
}






h3 {
  font-weight: 400;

}
h2{
	 font-size: 3vw;
		line-height: 97%;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-align: left;
  margin: 0;
	padding-right: 45%;
	
}

.current-time h4 {
    padding-left: 1.5em;
}

p {
  font-weight: 400;
	font-size: 0.6em;

	letter-spacing: 10%;
}

.columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	padding: 2%;
}





.column {
  flex-basis: 45%;
  margin-bottom: 0em;
  padding-left: 0em;
  padding-bottom: 0em;
  padding-top: 4em;
	padding-right: 0em;
}


.column h4 {
  font-size: 3vw;
		line-height: 97%;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-align: left;
  margin: 0;
}

.place {
     padding-left: -10em;
}

	#current-time { margin-top: 1px; margin-bottom: -18px;}

.column h5 {
  padding-left: 0em;
}

.column3 {
	padding-top: 0;
	padding-left: 0vw;
}



.landing-page {
	display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  position: relative;
	padding: 0;
  width: 100%;
  height: 100vh;
	width: 100%;
  overflow: hidden;
	background: none;

}

.landing-page h2 {
  font-size: 3vw;
	letter-spacing: -0.1rem;
  width: 85vw; /* Adjust this for how wide you want it (80% of viewport width) */
  text-align: left;
	line-height: 98%;
      font-weight: 400;
	bottom: 0;
	  mix-blend-mode: difference; /* Or use 'overlay' instead of 'difference' */
}

.landing-page h5 {
  font-size: 2vw;
	letter-spacing: -0.03rem;
 
  text-align: left;
	line-height: 100%;
      font-weight: 400;
	bottom: 0;
	  mix-blend-mode: difference; /* Or use 'overlay' instead of 'difference' */
}

.landing-page p {
  font-size: 1.5vw;
	letter-spacing: -0.03rem;
 
  text-align: left;
	line-height: 100%;
      font-weight: 400;
	bottom: 0;
	  mix-blend-mode: difference; /* Or use 'overlay' instead of 'difference' */
}


.svg-container{
	  color: white; /* Ensure text is visible */
mix-blend-mode: difference;

}



.svg-container2 img {
padding-bottom: -100vh;

}

.landing-page .svg-container {
  margin-bottom: 0%;
background: none;
	top: 0;
	width: 100%;
}

/* Carousel Container - Full screen */
.carousel {
  position: absolute;

top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Behind other content */
  overflow: hidden;
	background: black;
	
}

/* Individual Carousel Items */
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active Carousel Item */
.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

/* Landing Page Content (SVG and About) */
.landing-page-content {
  position: relative;
  z-index: 2; /* Above the carousel */
  text-align: center;
  color: white; /* Ensure text is visible */
}


::selection {
  background-color: white; /* White highlight */
  color: black; /* Black text when highlighted */
}



.svg-container, img {
	text-align: center;
  mix-blend-mode: none; /* Or use 'overlay' instead of 'difference' */
}



/* Thumbnail styling */
.thumbnail {
    margin-right: 0px; /* Add spacing */
}

.thumbnail-img {
    width: 113px; /* Adjust size of thumbnail */
    height: 63px; /* Ensure the image is square */
    object-fit: cover;
    border-radius:0px;
    border: none; /* Optional border */
}

.thumbnail-img:visited {
    display: none;
}

@media only screen and (max-width: 600px)
{
	
a {
  text-decoration: underline;
  color: white;
  mix-blend-mode: difference;
  position: relative; /* Allow the link to sit above other elements */
  z-index: 10; /* Ensure the link is clickable and not covered */
}

a:hover, a:active, a:visited {
  color: white; /* Ensure text is visible */
  mix-blend-mode: difference;
}



.svg-container {
  margin-top: 0;
  width: 100vw;
  max-width: 100%;
  height: auto;
  align-self: flex-start;
	  color: white; /* Ensure text is visible */

}




.fixed {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000; /* Ensure the fixed element is on top */
}





video {
  max-width: 100%;
  object-fit: cover;
  animation: play-loop 20s infinite;
  object-position: center;
}






.overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: rgba(255, 255, 255, 0.8);
    filter: blur(5px);
  
    z-index: 1000;
}






h3 {
  font-weight: 400;

}
h2{
	 font-size: 10vw;
		line-height: 97%;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-align: left;
  margin: 0;
	padding-right: 10%;
	
}

.current-time h4 {
    padding-left: 1.5em;
}

p {
  font-weight: 400;
	font-size: 0.6em;

	letter-spacing: 10%;
}

.columns {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
	padding: 2%;
}





.column {
  flex-basis: 100%;
  margin-bottom: 0em;
  padding-left: 0em;
  padding-bottom: 0em;
  padding-top: 0em;
	padding-right: 0em;
	
	

}

.column h4 {
  font-size: 3vw;
		line-height: 97%;
  font-weight: 400;
  letter-spacing: -0.1rem;
  text-align: left;
  margin: 0;
}

.place {
     padding-top: -10em;
}

.column h5 {
  padding-left: 0em;
}

.column3 {
	padding-top: 0;
	padding-left: 0vw;
}

	#current-time { margin-top: 1px;}


.landing-page {
	display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  min-height: 100vh;
  position: relative;
	padding: 0;
  width: 100%;
  height: 100vh;
	width: 100%;
  overflow: hidden;
	background: none;

}

.landing-page h2 {
  font-size: 6vw;
	letter-spacing: -0.07rem;
  width: 100vw; /* Adjust this for how wide you want it (80% of viewport width) */
  text-align: left;
	line-height: 100%;
      font-weight: 400;
	bottom: 0;
	  mix-blend-mode: none; /* Or use 'overlay' instead of 'difference' */
}

.landing-page h5 {
  font-size: 3.5vw;
	letter-spacing: -0.03rem;
 
  text-align: left;
	line-height: 105%;
      font-weight: 400;
	bottom: 0;
	  mix-blend-mode: none; /* Or use 'overlay' instead of 'difference' */
}

.landing-page p {
  font-size: 2.8vw;
	letter-spacing: -0.01rem;
 
  text-align: left;
	line-height: 1%;
      font-weight: 400;
	bottom: 0;
	  mix-blend-mode: none; /* Or use 'overlay' instead of 'difference' */
}


.svg-container{
	  color: white; /* Ensure text is visible */
mix-blend-mode: difference;

}



.svg-container2 img {
padding-bottom: -100vh;

}

.landing-page .svg-container {
  margin-bottom: 0%;
background: none;
	top: 0;
	width: 100%;
}

/* Carousel Container - Full screen */
.carousel {
  position: absolute;

top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Behind other content */
  overflow: hidden;
	background: black;
	
}

/* Individual Carousel Items */
.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

/* Active Carousel Item */
.carousel-item.active {
  opacity: 1;
  z-index: 1;
}

/* Landing Page Content (SVG and About) */
.landing-page-content {
  position: relative;
  z-index: 2; /* Above the carousel */
  text-align: center;
  color: white; /* Ensure text is visible */
}


::selection {
  background-color: white; /* White highlight */
  color: black; /* Black text when highlighted */
}



.svg-container, img {
	text-align: center;
  mix-blend-mode: none; /* Or use 'overlay' instead of 'difference' */
}



/* Thumbnail styling */
.thumbnail {
    margin-right: 0px; /* Add spacing */
}

.thumbnail-img {
    width: 113px; /* Adjust size of thumbnail */
    height: 63px; /* Ensure the image is square */
    object-fit: cover;
    border-radius:0px;
    border: none; /* Optional border */
}

.thumbnail-img:visited {
    display: none;
}
	
	.carousel-caption {
  position: fixed;
  bottom: 2%;
  left: 2%;
  margin: 0;

  color: white;
  background: rgba(0, 0, 0, 0);
	mix-blend-mode: difference;
  border-radius: 4px;
  z-index: 1000;
  max-width: 90%;
  pointer-events: none;
	 transition: opacity 0.5s ease;
	font-size: 2.5vw;

 
	
}


#carousel-caption.fade-out {
  opacity: 0;
}



	
}
	

