@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto+Mono&display=swap");

:root {
  /* Deep blue color scheme */
  --off-white: rgb(238, 238, 238);

  /* Dark gray color scheme */
  --dark-gray: rgb(56, 72, 85);
  --mid-dark-gray: rgb(69, 91, 112);
  --mid-gray-blue: rgb(47, 91, 129);
  --mid-light-gray: rgb(168, 186, 199);
  --gradient-gray: rgb(167, 186, 204);
  --light-gray: rgb(233, 238, 243);
  --light-blue: rgb(118, 219, 255);
  --mid-blue: rgb(1, 162, 221);
  --dark-blue: rgb(0, 151, 206);

  --correct-green: rgb(0, 190, 79);
  --correct-dark-green: rgb(0, 104, 47);
  --correct-bg: rgb(247, 255, 251);

  --incorrect-red: rgb(216, 14, 14);
  --incorrect-dark-red: rgb(172, 5, 5);
  --incorrect-bg: rgb(255, 244, 244);
}

* {
  padding: 0;
  margin: 0;
  /* border: 1px solid pink; */
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  /* Set font size for easy rem calculations
 * (100% / 16px) * 10 = 62.5%, 1rem = 10px, 62.5% = 10px
*/
}



body {
  font-family: "Nunito Sans", sans-serif;
  background-color: #1f2420;
  color: var(--dark-gray);
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
}

@media (min-width: 450px) {
  body {
    background: #1f2420;

  }
}

img {
  display: block;
  max-width: 50%;
  height: auto;
  pointer-events: none;
}

button {
  width: 100%;
  font-size: 1.85rem;
  letter-spacing: 1px;
  color: #fff;
  background-color: var(--dark-blue);
  border: 1px solid var(--mid-dark-gray);
  border-top: none;
  cursor: pointer;
  border-radius: 0;
  padding: 1.7rem;
  transition: all 300ms;
}

@media (min-width: 450px) {
  button {
    color: rgba(255, 255, 255, 0.85);
  }

  button:hover,
  button:focus {
    color: rgba(255, 255, 255, 1);
  }
}

/* Modals */
.modal,
.end-modal {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(50, 50, 50, 0.5);
  -webkit-backdrop-filter: blur(3px);
  backdrop-filter: blur(5px);
  z-index: 3;
  transform: scale(0);
  transition: all 300ms ease-in-out;
}

.modal.active,
.end-modal.active {
  transform: scale(1);
  opacity: 1;
}

.modal-window,
.end-modal-window {
  position: absolute;
  top: 10%;
  width: 90%;
  max-width: 415px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--dark-gray);
  backdrop-filter: blur(10px);
  box-shadow: 0 0.7rem 1.25rem rgba(0, 0, 0, 0.3),
    0 -1rem 1rem rgba(0, 0, 0, 0.3);
}

.modal-window h1,
.end-modal-window h1 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 100;
  color: #fff;
  text-shadow: 0 3px 4px rgba(255, 255, 255, 0.8),
    0 -3px 4px rgba(255, 255, 255, 0.8);
  padding: 2rem 1.9rem 1.9rem;
  background-color: var(--mid-gray-blue);
}

.modal-inner-background {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  margin: 1.5rem;
  padding: 2.5rem 1.5rem 1.5rem 1.5rem;
  border-top: none;
}

.modal-window h2 {
  color: var(--dark-gray);
  text-align: center;
  font-weight: 600;
  font-size: 1.9rem;
  margin-top: 0.125rem 0;
}

.modal-window ul {
  color: var(--mid-dark-gray);
  margin-bottom: 1.25em;
  list-style-position: inside;
}

.modal-window li {
  font-size: 1.6rem;
  margin: 0.75em;
  list-style-type: "● ";
  line-height: 1.5;
}

.modal-window p {
  display: block;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  padding-top: 2rem;
  margin: 0 1.5rem 2.5rem 1.5rem;
}

/* End of game modal */

.end-modal-window {
  display: none;
  text-align: center;
}

.end-modal-window.active {
  display: block;
}

.end-modal-window h1 {
  letter-spacing: 0.1rem;
  text-shadow: none;
  font-weight: 400;
  text-shadow: 1px 1px 3px rgb(0, 0, 0, 0.3);
}

/* close icon */
.end-modal-window i {
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2.5rem;
  color: #fff;
  opacity: 0.5;
}

.end-modal-window i:hover,
.end-modal-window i:focus {
  opacity: 0.8;
}

.final-score {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 2px;
  margin: 0.3rem 0 1.2rem 0;
}

.end-message h2 {
  font-weight: 700;
  font-size: 2.2rem;
}

.end-message p {
  padding: 1.5rem 2rem 2rem 2em;
  font-size: 1.7rem;
  border: none;
  border-bottom: 1px solid var(--mid-light-gray);
}

.share-container h2 {
  font-size: 1.7rem;
  margin-top: 1.75rem;
  margin-bottom: 1.5rem;
}

.share-container a {
  padding: 0.3rem;
}

.share-icons {
  display: flex;
  justify-content: center;
  margin-bottom: 2.25rem;
}


/* Top bar */
.topbar {
  position: fixed;
  overflow: hidden;
  top: 0;
  color: #fff;
  background-color: transparent;
  width: 100%;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.85rem 1.5rem;
}

.topbar.scroll-shadow {
  box-shadow: none;
}

.quiz-title h1 {
  font-size: 1.8rem;
  font-weight: 300;
  color: #fff;
  text-shadow: 0 3px 4px rgba(255, 255, 255, 0.8),
    0 -3px 4px rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.topbar-links ul {
  display: flex;
  list-style-type: none;
  padding: 0;
  margin: 0;
  list-style-type: none;
}

.topbar-links li {
  display: none;
  text-decoration: none;
  color: #fff;
  font-size: 1.4rem;
}

.topbar-links li.active {
  display: block;
}

.topbar-links li a {
  text-decoration: none;
  color: #fff;
  opacity: 0.75;
}

.topbar-links li a:hover,
.topbar-links li a:focus {
  opacity: 1;
}


/* Quiz content */
#quiz-content {
  width: 500px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding-top: 42px;

}



/* Celebrity image */
.image-container {
  display: flex;
  justify-content: center;
  width: 250px;
  height: auto;
  margin: 0 auto;
  background-color: var(--mid-light-gray);
}

.celebrity-image-container {
  display: flex;
  width: 250px;
  height: auto;
  justify-content: center;
  background-color: var(--mid-light-gray);
  overflow: hidden;
}

.celebrity-image {
  opacity: 0;
  align-self: center;
}

.blur-image {
  -webkit-filter: blur(20px);
  filter: blur(20px);
}

.fade-in {
  animation-name: fadeInImage;
  animation-duration: 750ms;
  animation-fill-mode: forwards;
}

/* Image animation */
@keyframes fadeInImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeInImage {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* Image media queries */

  .image-outer-wrapper {
    width: 500px;
    height: auto;
    margin-top: 1.25rem;
    }

  .celebrity-image-container {
    max-width: 400px;
    margin: 0 auto;
    background-color: #fff;
    padding: 0;
    border: 1px solid var(--mid-light-gray);
    border-bottom: none;
  }

  .celebrity-image {
    border: 0.4rem solid #fff;
    background-color: transparent;
  }
}


}

.hud-multiple-choice-wrapper {
  width: 50%;
}


  .hud-multiple-choice-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-width: 300px;
    height: auto;
    margin-left: 2.75rem;
    background: var(--light-gray);
  }




/* HUD */
.hud-wrapper {
  width: 100%;
}

.hud {
  position: relative;
  color: #fff;
  font-size: 1.65rem;
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.75rem 1.125rem 1.6rem;
  background-color: var(--mid-dark-gray);
  border-top: 1px solid rgba(255, 255, 255, 0.3);
}

.hud-item {
  letter-spacing: 0.1rem;
}

.progress-bar {
  width: 10rem;
  height: 1.4rem;
  border: 0.1rem solid var(--light-gray);
  background-color: #fff;
}

.progress-bar-full {
  height: 1.2rem;
  width: 0%;
  background-color: var(--mid-blue);
}

.hud-next-arrow {
  position: absolute;
  top: 0.65rem;
  left: 45.75%;
  font-size: 3.2rem;
  visibility: visible;
  opacity: 0.5;
  pointer-events: none;
}

.hud-next-arrow.active {
  opacity: 1;
  color: var(--light-blue);
  pointer-events: auto;
}

.score {
  font-weight: 600;
  letter-spacing: 1px;
}

/* Hud media queries */
@media (min-width: 450px) {
  .hud-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .hud {
    max-width: 400px;
    padding: 1.2rem 2rem 1.2rem 1.75rem;
    border-top: none;
  }

  .hud-next-arrow {
    top: 0.7rem;
  }
}

@media (min-width: 888px) {
  .hud {
    padding: 1.6rem 1.75rem;
  }

  .hud-next-arrow {
    visibility: hidden;
  }
}

@media (min-width: 1025px) {
  .hud {
    padding: 1.85rem 2rem;
  }

  .score {
    font-size: 1.8rem;
  }
}

/* Multiple choice section */
.multiple-choice-wrapper {
  width: 50%;
}

.multiple-choice-container {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  background: var(--gradient-gray);
  background-image: linear-gradient(
    0deg,
    rgb(167, 186, 204) 0%,
    rgba(227, 233, 240, 1) 100%
  );
}

.answer-items {
  padding: 0.875rem 1.5rem 1.5rem;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.choice-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 0.4rem;
  width: 100%;
  background-color: white;
  border: 1px solid var(--mid-dark-gray);
  border-top: none;
  transition: all 150ms;
}

.choice-container:hover,
.choice-container:focus {
  cursor: pointer;
  box-shadow: 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.4);
  transform: translateY(-0.1rem);
  transition: transform 200ms;
}

.choice-prefix {
  display: inline-block;
  font-family: "Roboto Mono", monospace;
  font-size: 1.8rem;
  background-color: var(--mid-blue);
  padding: 1.2rem 1.5rem;
  color: #fff;
}

.choice-text {
  color: var(--dark-gray);
  font-size: 1.6rem;
  padding: 1.3rem 0rem 1.3rem 2.5rem;
  width: 100%;
}

.choice-container.inactive .choice-text {
  color: var(--mid-light-gray);
}

.choice-container.inactive {
  border: 1px solid var(--mid-light-gray);
  border-top: none;
}

.choice-container.correct {
  border: 1px solid var(--correct-dark-green);
  border-top: none;
  background-color: var(--correct-bg);
}

.choice-container.correct > .choice-prefix {
  background-color: var(--correct-green);
}

.choice-container.correct > .choice-text {
  color: var(--correct-dark-green);
}

.choice-container.incorrect {
  pointer-events: none;
  border: 1px solid var(--incorrect-dark-red);
  border-top: none;
  background-color: var(--incorrect-bg);
}

.choice-container.incorrect > .choice-prefix {
  background-color: var(--incorrect-red);
}

.choice-container.incorrect > .choice-text {
  color: var(--incorrect-dark-red);
}

/* Multiple choice media queries */
@media (min-width: 450px) {
  .multiple-choice-wrapper {
    width: 50%;
  }

  .multiple-choice-container {
    max-width: 400px;
    background: transparent;
  }

  .answer-items {
    padding: 0 0 2.5rem;
  }

  .choice-text {
    text-align: center;
    padding-left: 0;
    /* padding-right: 4rem; */
  }
}

@media (min-width: 666px) {
  .multiple-choice-container {
    background: var(--light-gray);
  }

  .answer-items {
    padding-bottom: 0;
  }

  .choice-container.last {
    margin-bottom: 0;
  }
}

@media (min-width: 888px) {
  .choice-text {
    text-align: left;
    padding: 1.325rem 0rem 1.325rem 2rem;
  }

  .answer-items {
    padding-top: 0.725rem;
  }

  .choice-prefix {
    padding: 1.3rem 1.6rem;
  }
}

@media (min-width: 1025px) {
  .choice-container {
    margin-bottom: 0.6rem;
  }
}

@media (min-width: 1280px) {
  .choice-prefix {
    padding: 1.35rem 1.6rem;
  }
}

/* Next button */
.next-btn-container {
  display: none;
}

@media (min-width: 888px) {
  .next-btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 440px;
    height: 100%;
   
    border-top: none;
  }

  .next-btn {
    width: 65%;
    background-color: var(--mid-light-gray);
    pointer-events: none;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.8rem;
  }

  .next-btn span {
    margin-right: 0.5rem;
  }

  .next-btn.active {
	  text-shadow: 2px 0 #f20000, -2px 0 #f20000, 0 2px #f20000, 0 -2px #f20000,
             1px 1px #f20000, -1px -1px #f20000, 1px -1px #f20000, -1px 1px #f20000;
	  border-radius: 25px;
	  border: 4px solid var(--incorrect-dark-red);
	  font-size:32px;
    background-color: var(--mid-blue);
    pointer-events: auto;
    transition: 300ms;
  }

  .next-btn.active:hover i {
    transform: translateX(2px);
  }
}
.entro{
	 width: 400px;
     background-color: var(--mid-blue);
	 font-size:32px;
  }




@media (min-width: 1025px) {
  .next-btn {
    padding: 2rem;
  }
}
  .puntale {
    width: 126px;
	height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
	 font-size:  22px;
	background-color: var(--mid-light-gray);
  border: 1px solid var(--incorrect-dark-red);
 }
 .puntaleb {
    width: 126px;
	height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
	 font-size:  22px;
	background-color: var(--mid-light-gray);
  border: 1px solid var(--incorrect-dark-red);
 }   