.custom-container {
  min-height: 100svh;
  background-color: white;
  background-image: url('https://d1o785do8fyxgx.cloudfront.net/uploaded_photos/images/000/000/252/original/no-results.png?1755171568');
  background-repeat: repeat;
  background-size: 150px 150px;
  background-position: 0 0;
}
.flex-col {
  display: flex;
  flex-direction: column;
}

/* Removed @font-face rules for custom fonts */

body {
  font-family: 'Roboto', sans-serif !important;
  color: #1e2525 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto', sans-serif !important;
}

p {
  font-family: 'Roboto', sans-serif !important;
}

.welcome-message {
  position: absolute;
  top: 15px;
  left: 16px;
  font-size: 14px;
  color: #1e2525;
}

.log-out {
  position: absolute;
  top: 15px;
  right: 16px;
  font-size: 14px;
  color: #1e2525;
}

.marquee-container {
   gap: 32px;
}

.btn-upload {
  background: linear-gradient(135deg, #ffa359, #ffba83);
  color: white;
  padding: 15px 30px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: bounceUpDown 2s ease-in-out infinite;
  box-shadow: 0 4px 15px rgba(238, 90, 36, 0.3);
}

.homepage-data {
  display: flex;
  margin-top: 30px;
  gap: 32px;
}


.btn-upload:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(238, 90, 36, 0.4);
}

.relative-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 8px 24px 0 rgba(0, 12, 27, 0.16);
  padding: 32px;
  max-width: 1250px;
  background-color: #faf7f0;
  z-index: 99999999999;
}

.question-container {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 8px 24px 0 rgba(0, 12, 27, 0.16);
  padding: 32px;
  max-width: 800px;
  background-color: #faf7f0;
  z-index: 99999999999;
}


#countdown {
    font-size: 100px;
    font-weight: bold;
    color: #ffba83; /* Nice indigo blue - change this to any RGB you prefer */
    margin-bottom: 2rem;
    transition: transform 0.1s ease-out;
}

.heartbeat {
    animation: heartbeat 0.6s ease-in-out;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    25% { transform: scale(1.05); }
    50% { transform: scale(1); }
    75% { transform: scale(1.03); }
    100% { transform: scale(1); }
}

/* Color palette reference:
"ink": #1e2525,
"ink-1": #e8e9e9,
"ink-2": #c7c9c9,
"ink-3": #8e9292,
"ink-4": #565c5c,
"ink-5": #1e2525,

"paper": #f4eee0,
"paper-1": #fffefa,
"paper-2": #faf7f0,
"paper-3": #f4eee0,
"paper-4": #ece1c7,
"paper-5": #e2d2ac,
"paper-6": #a99a78
*/
