
body {
  font-family: Georgia, serif;
  background: #101010;
  margin: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 420px;
  margin: 0 12px;
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 20px rgba(0,0,0,0.1);
}

h1 {
  text-align: center;
  font-size: 24px;
}

select, button {
  width: 100%;
  padding: 14px;
  font-size: 16px;
  margin-top: 12px;
  border-radius: 8px;
  border-width:#101010, 2px;
}

#start-btn {
    background-color: #050505;
    color: white;
    border-width:#101010, 2px;
}

#next-btn {
    background-color: #050505;
    color: white;
    border-width:#101010, 2px;
}

.secondary-btn {
  background:  #ee5959 ;
  margin-top: 10px;
}

.secondary-btn:hover {
  background: #cc2014;
}


.question {
  margin-top: 16px;
  font-size: 17px;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .container {
    max-width: 520px;
  }

  h1 {
    font-size: 28px;
  }
}

.score {
  text-align: center;
  font-weight: bold;
  margin-top: 10px;
}

.celebration {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.celebration img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.hidden {
  display: none;
}