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

/* Color Theme Swatches in Hex */
:root {
  --chdreams-blue: #00CBFF;
  --chdreams-blue-lightest: #ECFBFF;
  --chdreams-blue-light: #ADEFFF;
  --chdreams-blue-dark: #002C38;
  --chdreams-blue-darkest: #00151B;
  --chdreams-pink: #FF0091;
  --chdreams-pink-lightest: #FFE3EE;
  --chdreams-pink-light: #FFD3EB;
  --chdreams-pink-medium: #FFADD7;
  --chdreams-pink-dark: #560035;
  --chdreams-pink-darkest: #16000D;
  --chdreams-yellow: #FFF100;
  --chdreams-yellow-lightest: #FFFEE5;
  --chdreams-yellow-light: #FFFA9A;
  --chdreams-yellow-dark: #292700;
  --chdreams-black: #000405;
}

@font-face {
  font-family: "Overtime LCD Pro Bold";
  src: url("../fonts/OvertimeLCDPro-Bold.otf");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Overtime LCD Pro Light";
  src: url("../fonts/OvertimeLCDPro-Light.otf");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Brandon Grotesque Black";
  src: url("../fonts/BrandonGrotesque-Black.otf");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Brandon Grotesque Bold";
  src: url("../fonts/BrandonGrotesque-Bold.otf");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Brandon Grotesque Regular Italic";
  src: url("../fonts/BrandonGrotesque-RegularItalic.otf");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Comic Sans MS Bold ";
  src: url("../fonts/ComicSansMS-Bold.ttf");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Comic Sans MS";
  src: url("../fonts/ComicSansMS.ttf");
  font-display: block;
  font-style: normal;
}
@font-face {
  font-family: "Inter Regular";
  src: url("../fonts/Inter-Regular.otf");
  font-display: block;
  font-style: normal;
}


body {
  background-color: #f0f0f0;
  margin: 0;
  padding: 0;
  overflow: auto;
  font-family: "Inter Regular", sans-serif;
}

.container {
  position: relative;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.image-container {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#mainImage {
  width: 100%;
  height: auto;
  display: block;
}

.clock-display {
  font-family: "Overtime LCD Pro Bold", sans-serif;
  font-weight: bold;
  /* text-shadow: 0 0 6px #31697b, 0 0 10px #31697b; */
  letter-spacing: 0.05em;
  color: #202121;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  text-align: center;
}

.instagram-imgs {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.instagram-imgs img {
  width: 100%;
  max-width: 300px;
  height: auto;
  margin: 10px;
}

/* Mobile devices (phones) - Watch takes up most of screen */
@media screen and (max-width: 768px) {
  .container {
    width: auto;
    height: 75vh;
    max-width: calc(75vh * 0.545);
  }

  .clock-display {
    font-size: calc(75vh * 0.04);
    padding: 0.2vw;
    transform: translate(-50%, calc(-50% + 6vh));
  }
}

/* Tablet devices */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .container {
    width: auto;
    height: 50vh;
    max-width: calc(50vh * 0.545);
    margin-top: 5vh;
  }

  .clock-display {
    font-size: calc(50vh * 0.04);
    padding: 0.3vw;
    transform: translate(-50%, calc(-50% + 4vh));
  }
}

/* Desktop and laptop screens - Watch takes up 2/3 of screen */
@media screen and (min-width: 1025px) {
  .container {
    width: auto;
    height: 60vh;
    max-width: calc(60vh * 0.545);
    margin-top: 5vh;
  }

  .clock-display {
    font-size: calc(60vh * 0.04);
    padding: 0.4vw;
    transform: translate(-50%, calc(-50% + 4.8vh));
  }
}

.about-cultof8 {
  width: 100%;
  text-align: center;
  padding: 40px 20px;
  background-color: #f0f0f0;
  margin: 0;
}

.about-cultof8 h1 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: #202121;
}

.about-cultof8 p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 15px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .about-cultof8 h1 {
    font-size: 1.5rem;
  }

  .about-cultof8 p {
    font-size: 1rem;
  }
}

.hint-text {
  position: relative;
  margin: 20px 0;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hint-message {
  font-size: 1.5rem;
  color: #333;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  position: absolute;
  white-space: nowrap;
}

.hint-message.active {
  opacity: 1;
}

.hint-message.fade-out {
  opacity: 0;
}

/* Optional: Add a subtle glow effect */
.hint-message {
  text-shadow: 0 0 10px rgba(255, 219, 0, 0.3);
}