
@font-face {
  font-family: "SF Display";
  font-weight: 200;
  src: url("/fonts/SF-UI-Display-Light.otf");
}
@font-face {
  font-family: "SF Display";
  font-weight: 400;
  src: url("/fonts/SF-UI-Text-Regular.otf");
}
@font-face {
  font-family: "SF Display";
  font-weight: 500;
  src: url("/fonts/SF-UI-Display-Medium.otf");
}
@font-face {
  font-family: "SF Display";
  font-weight: 600;
  src: url("/fonts/SF-UI-Display-Bold.otf");
}
@font-face {
  font-family: "SF Display";
  font-weight: 800;
  src: url("/fonts/SF-UI-Display-Heavy.otf");
}

@font-face {
  font-family: "SF Display Rounded";
  font-weight: 200;
  src: url("/fonts/SF-Pro-Rounded-Light.otf");
}

@font-face {
  font-family: "SF Display Rounded";
  font-weight: 400;
  src: url("/fonts/SF-Pro-Rounded-Regular.otf");
}

@font-face {
  font-family: "SF Display Rounded";
  font-weight: 500;
  src: url("/fonts/SF-Pro-Rounded-Medium.otf");
}

@font-face {
  font-family: "SF Display Rounded";
  font-weight: 600;
  src: url("/fonts/SF-Pro-Rounded-Bold.otf");
}

@font-face {
  font-family: "SF Display Rounded";
  font-weight: 800;
  src: url("/fonts/SF-Pro-Rounded-Heavy.otf");
}

body {
  margin: 0;
  padding: 0;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  font-size: 0.5rem;
  text-align: center;
  padding: 0.2rem;
}

#content {
  filter: blur(1px) contrast(1.5);
}

#header,#footer {
  display: none;
}
h5,h6 {  
  font-family: "SF Display";
  font-weight: 500;
  color: #000;
  padding: 0 10%;  
  font-weight: 500;
  margin: 0;
  padding: 0;
  font-size: 0.5rem;
}

.sold {
  text-decoration: line-through;
}

#footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

#videoContainer {
  position: relative;
  width: 100%;
  height: 100%; 
  padding: 0 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

video, iframe {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: pixelated;
}

#textOverlay, #subtitle {
  position: absolute;
  bottom: 40px;
  left: 0;
  text-align: center;
  color: white;
  font-family: "SF Display";
  font-size: 33px;
  z-index: 100;
  padding: 0 80px;
  right: 0;
}

#dateDisplay { 
  position: absolute;
  top: 160px;
  right: 20px;
  color: white;
  font-family: "SF Display";
  font-size: 48px;
  z-index: 100;
  left: 20px;
  text-align: center;
  letter-spacing: -2px;
  z-index: 2000;
}

#dateDisplay {
  position: absolute;
  top: 160px;
  right: 20px;
  color: white;
  font-family: "SF Display";
  font-size: 50px;
  z-index: 100;
  left: 20px;
  text-align: center;
  letter-spacing: -2.5px;
}


/* #timeDisplay { old mono
  top: 189px;
right: 20px;
color: white;
font-family: monospace;
font-size: 188px;
z-index: 100;
left: 20px;
text-align: center;
letter-spacing: -2px;
font-weight: bold;
z-index: 20000;
position: absolute;
} */

#timeDisplay {
  top: 189px;
  right: 20px;
  color: white;
  font-family: "SF Display Rounded";
  font-size: 250px;
  z-index: 100;
  left: 20px;
  text-align: center;
  letter-spacing: -9px;
  font-weight: bold;
  z-index: 20000;
  position: absolute;
  font-weight: 500;
}

#content {
  text-align: center;
  transition: opacity 1s ease;
}

#content h1, #content h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-family: "SF Display";
  font-weight: 500;
  line-height: 1.2;
  margin: 0;
  padding: 0;
}
#content h1 {
  font-weight: 600;
}
/* 
#content h2 {
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.5;
  max-width: 800px;
} */

/* Fade transition classes */
.fade-out {
  opacity: 0;
}

.fade-in {
  opacity: 1;
}