body {
    font-family: "kohinoor", sans-serif;
    font-size: 1.5em;
    background-color: #57cee7;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

h1 {
    font-family: "hwt-artz", sans-serif;
    font-size: 2em;
    text-align: center;
    color: #052b47;
    margin: 0px;
}

#game-container {
    max-width: 900px;
    margin: 20px auto 0px auto;
    text-align: center;
}

.choice-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 20px;
}

.choice {
    background: #8984d7;
    border: 2px solid #dbb796;
    border-radius: 10px;
    width: 600px;
    padding: 10px;
    cursor: pointer;
    transition: transform 0.3s;
}

.choice:hover {
    transform: scale(1.05);
}

.choice img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.choice p {
    margin-top: 10px;
    font-weight: bold;
    color: #052b47;
}

#score {
    margin-top: 30px;
    font-size: 1.2em;
    color: #052b47;
}

.progress-container {
  width: 100%;
  background-color: #e0e0e0;
  border-radius: 20px;
  overflow: hidden;
  height: 24px;
  margin: 20px 0;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #63d471 0%, #233329 100%);
  transition: width 0.3s ease-in-out;
  border-radius: 20px;
}

.button {
  background-color: #dbb796; 
  border: none;
  color: #052b47;
  padding: 0px 15px 0px 10px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 35px;
  cursor: pointer;
  border-radius: 20px;
}