.container {
  width: 60%;
  margin: auto;
}

/* Status Bar */
#status {
  font-size: 2.5rem;
  display: flex;
  justify-content: space-between;
  background: rgba(161, 255, 118, 0.4);
  margin-bottom: 4rem;
  padding: 2rem;
  border-radius: 20px;
}

.heart {
  color: #cc2936;
}

.score,
.question-number {
  padding-top: 0.6rem;
}

/* Question */

#question {
  line-height: 1.2em;
}

/* Choices */
.choice-container {
  display: flex;
  margin-bottom: 0.8rem;
  width: 100%;
  font-size: 1.8rem;
  background-image: linear-gradient(to bottom, #009ba4, #13293d);
}

.choice-prefix {
  padding: 1.5rem 2.5rem;
  background: linear-gradient(#fff, #a4b1be);
  color: #2f2d2e;
}

.choice-text {
  padding: 1.5rem;
  width: 100%;
}

.choice-container:hover {
  transition: all 0.5s ease-in-out;
  cursor: pointer;
  transform: scale(1.01);
  opacity: 0.8;
}

.correct {
  color: #000;
  font-size: 2rem;
  background-color: #93d305;
  transition: all 0.5s ease;
}

.incorrect {
  background-color: #cc2936;
  transition: all 0.5s ease;
}

.control-btns {
  display: flex;
  align-items: space-between;
  justify-content: space-between;
  margin-top: 3rem;
}

#get-help {
  margin-left: 1rem;
  margin-right: 1rem;
}

.control-btns a {
  font-size: 1.5rem;
  text-transform: uppercase;
}

.control-btns a:hover,
.show-result a:hover {
  transition: all 0.3s ease-in-out;
  border: none;
}

/* Tooltip Text */
.tooltip {
  position: relative;
  display: inline-block;
}

/* Tooltip text */
.tooltip .tooltiptext {
  visibility: hidden;
  width: 150px;
  background: linear-gradient(#fff, #a4b1be);
  color: #000;
  text-align: center;
  padding: 5px;
  border-radius: 6px;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  bottom: 100%;
  left: 50%;
  margin-left: -60px;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tooltip:hover .tooltiptext {
  visibility: visible;
}

/* Alert & Results */
.hide {
  display: none;
}

.show {
  display: block;
}

#quit-alert,
.show-result {
  position: absolute;
  width: 90%;
  max-width: 450px;
  top: 35%;
  left: 32%;
  background-image: linear-gradient(
    to left bottom,
    #048ba8,
    #009ba4,
    #00a887,
    #23b157,
    #7eb405
  );
  padding: 2rem;
  border-radius: 5px;
  text-align: center;
  margin: auto;
  padding-bottom: 3rem;
}

#quit-alert img {
  margin-bottom: 2rem;
}

#quit-alert .btn {
  width: 80px;
}

.show-result h2 {
  margin-top: 2rem;
}

.show-result p {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.show-result .btn {
  padding-left: 2rem;
  padding-right: 2rem;
}

#low-result .btn {
  margin-left: 1rem;
  margin-right: 1rem;
}

.show-result input {
  color: #000;
  font-size: 1.5rem;
  padding: 1.3rem;
  border: none;
  border-radius: 10px;
}

#save-score-container {
  margin-bottom: 4rem;
}

#high-result .quit {
  margin-right: 5rem;
}

/* Media Query */
@media only screen and (max-width: 700px) {
  .container {
    width: 80%;
  }

  #high-result {
    max-width: 80%;
    top: 25%;
    left: 10%;
  }

  #low-result,
  #quit-alert {
    max-width: 80%;
    top: 40%;
    left: 10%;
  }
}

.checkmark {
  display: none;
  border-radius: 20px;
  margin: auto;
  margin-bottom: 4rem;
}

/* HIGH SCORES PAGE */
#top-scores {
  border: 1px solid #fff;
  border-radius: 5px;
  width: 400px;
  padding: 2rem 4rem;
  line-height: 4em;
  margin-bottom: 2rem;
}

#top-scores li {
  display: flex;
  justify-content: space-between;
  font-size: 2.5rem;
  width: 100%;
}
