/* Main Container Styling */

.choice-container {
  display: flex;
  margin-bottom: 0.5rem;
  width: 100%;
  font-size: 1.8rem;
  border: 0.1rem solid rgb(86, 165, 235, 0.25);
  background-color: white;
}

.choice-container:hover {
  cursor: pointer;
  box-shadow: 0 0.4rem 1.4rem 0 rgba(86, 185, 235, 0.5);
  transform: translateY(-0.1rem);
  transition: transform 150ms;
}

.choice-prefix {
  padding: 1.5rem 2.5rem;
  background-color: #56a5eb;
  color: white;
}

.choice-text {
  padding: 1.5rem;
  width: 100%;
}

.correct {
  background-color: #28a745;
}

.incorrect {
  background-color: #dc3545;
}

/* HUD */

#hud {
  display: flex;
  justify-content: space-between;
}

.hud-prefix {
  text-align: center;
  font-size: 2rem;
}

.hud-main-text {
  text-align: center;
}

#progressBar {
  width: 20rem;
  height: 4rem;
  border: 0.3rem solid #56a5eb;
  margin-top: 1.5rem;
}

#progressBarFull {
  height: 3.4rem;
  background-color: #56a5eb;
  width: 0%;
}

.quiz_timer {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4rem;
  width: 130px;
  background-color: #56a5eb;;
  color: #fff;
  font-size: 2rem;
  margin-top: 1.5rem;
}

  /* Header section styling */
header {
  background-size: 100%;
  background-color: #666666;
  /* background-color: #ffffff; */
  padding: 0px;
  height: 80px;
  font-size: 18px;
  border-bottom: 8px solid #56a5eb;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  overflow: hidden;
}


/* Navigation bar related styling */
nav {
  display: flex;
  justify-content: flex-end;
}

nav a {
  color: #56a5eb;
  /* color: #777777; */
  text-decoration: none;
  text-transform: capitalize;
  padding: 10px;
}

nav ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

nav li:not(:last-child) {
  border-right: 1px solid lightgrey;
}

nav li {
  display: inline-block;
  margin-top: 10px;
}


/* Footer section styling */
footer {
  background-color: #666666;
  height: 50px;
  color: #56a5eb;
  /* color: #777777; */
  text-align: center;
  font-size: 1.5rem;
  border-top: 8px solid #56a5eb;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

/* Media Queries */

@media (max-width: 479px) {
  #progressBar {
  width: 12rem;
  height: 2.3rem;
  }

#progressBarFull {
  height: 2rem;
  width: 0%;
}

.quiz_timer {
  height: 3rem;
  width: 50px;
}

}

@media (max-width: 340px) {

#game {
  margin-top: 80px;
  height: 700px;
}

.hud-prefix {
  font-size: 1.5rem;
}

.hud-main-text {
font-size: 2rem;
}

.quiz_timer {
  width: 40px;
}
}