body {
  font-family: sans-serif;
  background-image: url('Grace’sb.png');
  background-size: cover;          /* Ensures the image covers the entire screen */
  background-position: center;     /* Keeps it centered */
  background-repeat: no-repeat;    /* Prevents tiling */
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}


.container {
  background: transparent;
  padding: 2rem;
  border-radius: 10px;
  width: 300px;
  text-align: center;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  z-index: 1;
  position: relative;
}
h1{
    text-decoration: gold;
    color: rgb(245, 241, 21);
}
#choices button {
  display: block;
  margin: 10px auto;
  padding: 10px 20px;
  border: none;
  background: #007BFF;
  color: white;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1rem;
}

#choices button:hover {
  background: #0056b3;
}

#next-btn {
  margin-top: 1rem;
  padding: 10px 20px;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

#next-btn:hover {
  background: #218838;
}

.character-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 10px;
}

.character {
  font-size: 3rem;
}

.speech-bubble {
  background: #e0f7fa;
  border-radius: 15px;
  padding: 10px 15px;
  max-width: 200px;
  position: relative;
  font-size: 1rem;
}

.speech-bubble::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 20px;
  width: 0;
  height: 0;
  border: 10px solid transparent;
  border-top-color: #e0f7fa;
  border-bottom: 0;
  margin-left: -10px;
  margin-bottom: -10px;
}

/* Full screen intro video */
#intro-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 9999;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
}
#start-btn {
  position: absolute;
  bottom: 20%;
  left: 50%;
  transform: translateX(-50%);
  padding: 1rem 2rem;
  font-size: 1.2rem;
  background: #28a745;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  z-index: 10000;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}


#intro-video-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: black;
  display: flex;
  justify-content: center;
  align-items: center;
}

#intro-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 600px) {
  body {
    background-image: url('GRACE”S.png');
    background-size: cover;
    background-position: center;
  }

}
#intro-video-mobile {
  display: none;
}
@media (max-width: 600px){
    #intro-video{
        display:none;
        
    }
    #intro-video-mobile{
        display: block;
        width: 100vw;
        height: 100vh;
        object-fit: cover;
    }
}
