@font-face {
  font-family: 'Satoshi-Regular';
  src: url('../public/fonts/Satoshi-Regular.woff2') format('woff2'),
       url('../public/fonts/Satoshi-Regular.woff') format('woff'),
       url('../public/fonts/Satoshi-Regular.ttf') format('truetype'),
       url('../public/fonts/Satoshi-Light.otf') format('opentype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}

@font-face {
  font-family: 'Satoshi-Variable';
  src: url('../public/fonts/Satoshi-Variable.woff2') format('woff2'),
       url('../public/fonts/Satoshi-Variable.woff') format('woff'),
       url('../public/fonts/Satoshi-Variable.ttf') format('truetype'),
       url('../public/fonts/Satoshi-Variable.otf') format('opentype');
       font-weight: 300 900;
       font-display: swap;
       font-style: normal;
}

.congrats {
  font-size: 1.5em;
}

body {
  background-color: rgba(0, 147, 255, 100%);
  font-family: 'Satoshi-Regular';
  color:rgb(255, 255, 255);
  font-size: 100%;
}

.center {
display: block;
margin-left: auto;
margin-right: auto;
width: 70%;
border: solid #87C3FC 5px;
}

.homepage-new {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding-top: 2.5%;
}

.winners-table, .expl {
  display: flex;
  justify-content: center;
  width: 45%;
  padding-top: 2.5%;
  padding-bottom: 2.5%;
  border-radius: 30px;
  border: rgb(255, 255, 255) 5px solid;
  /* text-align: center;
  min-height: 50vh;
  padding-top: 2.5%; */
}

label[for=name] {
  margin: 5%;
  font-size: 1.5em;
}

input#name {
  margin: 5%;
  height: 5%;
}

input#email {
  margin: 5%;
  height: 5%;
}

label[for=email] {
  margin: 5%;
  font-size: 1.5em;
}

.next, input[type="submit"] {
  font-size: 1.5em;
  font: inherit;
  color: inherit;
  padding: 2.5%;
  border: none;
  border-radius: 15px;
  background-color: rgba(135, 195, 252, 0.8);
}

input[type="submit"]:hover {
  background-color: rgba(135, 195, 252, 1);
}

.topscores {
  width: 75%;
}

.form-homepage {
  display: flex;
  justify-content: center;
  width: 45%;
  text-align: center;
  padding-top: 2.5%;
  padding-bottom: 2.5%;
  border-radius: 30px;
  min-height: 40vh;
  border: rgb(255, 255, 255) 5px solid;
}

#signInForm {
  width: 75%;
}

#name {
  width: 75%;
}

#email {
  width: 75%;
}

.left-column {
  text-align: center;
}

nav {
  display: flex;
  justify-content: space-between;
  padding: 2.5%;
}

.poem-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
  width: 100%;
}

.poem-en {
  width: 100%;
}
.poem-ee {
  width: 100%;
}

th {
  border-bottom:rgb(255, 255, 255) solid 1px;
  font-size: 1.5em;
  padding: 1%;
}

td {
  vertical-align: top;
  padding-top: 5%;
  font-size: 1.25em;
}

button.lang-options {
  background: none;
	color: inherit;
	border: none;
	padding: 0;
	font: inherit;
  width: 100%;
}

button.lang-options:hover {
  background-color: rgba(255, 255, 255, 0.3);
}

button.lang-options:disabled {
  background-color: none;
  }

button.lang-options.disable {
  pointer-events: none;
  background-color: rgba(255, 255, 255, 0.3);
}

button#en.lang-options {
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

button#ee.lang-options {
  border-top-right-radius: 15px;
  border-bottom-right-radius: 15px;
}

.langMenu {
  display: flex;
  justify-content: space-around;
  background-color: rgba(135, 195, 252, 1);
  width: 10%;
  border-radius: 15px;
}

div.scroll-container {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 1px;
  overflow-x: scroll; /* Show horizontal scrollbar */
}

div.scroll-container img {
  padding: 1px;
}

::-webkit-scrollbar {
  width: 16px;
  border: 5px solid white;

}

::-webkit-scrollbar-thumb {
  background-color: #b0b0b0;
  background-clip: padding-box;
  border: 0.05em solid #eeeeee;
}

::-webkit-scrollbar-track {
  background-color: #bbbbbb;
}
/* Buttons */
::-webkit-scrollbar-button:single-button {
  background-color: #bbbbbb;
  display: block;
  border-style: solid;
  height: 13px;
  width: 16px;
}
/* Up */
::-webkit-scrollbar-button:single-button:horizontal:decrement {
  border-width: 0 8px 8px 8px;
  border-color: transparent transparent #555555 transparent;
}

::-webkit-scrollbar-button:single-button:horizontal:decrement:hover {
  border-color: transparent transparent #777777 transparent;
}
/* Down */
::-webkit-scrollbar-button:single-button:horizontal:increment {
  border-width: 8px 8px 0 8px;
  border-color: #555555 transparent transparent transparent;
}

::-webkit-scrollbar-button:horizontal:single-button:increment:hover {
  border-color: #777777 transparent transparent transparent;
}

.questionTable {
font-size: medium;
}

#question {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2.5%;
  font-size: large;
  border: solid white;
  border-radius: 15px;
  margin-bottom: 2.5%;
}

.quiz {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  text-align: center;
  margin-top: 2.5%;
}

.quiz-qa {
  display: flex;
  flex-direction: column;
  text-align: center;
  width: 45%;
  align-items: center;
  margin-right: 1%;
}
a.single {
  display: flex;
  justify-content: center;
  max-width: 50vw;
}

.a-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  align-items: center;
}

.imgq-container, .imga-container {
  width: 45%;
  margin: 1%;
  display: flex;
  justify-content: center;
}

.answer {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  font-size: larger;
}

.answer-container {
  display: flex;
  flex-direction: column;
  width: 45%;
  align-items: center;
  margin: 1%;
}

.quiz-image, .quiz-answer-image {
  max-width: 45vw;;
  max-height: 75vh;
}

.option {
  width: 75%;
  margin: 1%;
  padding: 2%;
  background-color: rgba(255, 255, 255, 0.3);
  border: none;
  border-radius: 15px;
  font-size: larger;
  color: white; 
}

.option:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: white; 
}



.expl {
  padding: 2.5%;
  width: 90%;
}

.next {
  margin-top: 2.5%;
}

.next:hover {
  background-color: white;
  color: #0093FF; 
}

@media only screen and (max-width:760px) {
.center {
width: 100%;
}

.quiz {
  flex-direction: column;
  width: 100%;
    }

    .expl {
      padding: 2.5%;
    }
    
    .next {
      margin-top: 2.5%;
    }
}

@media only screen and (max-width:847px) {
  .imgq-container, .imga-container {
    width: 100%;
    /* margin-top: 2.5%; */
  }
}

@media only screen and (max-width:1205px) {
 .homepage-new {
  flex-direction: column;
  width: 100%;
  align-items: center;
 }
.form-homepage {
  width: 80%;
  margin-top: 2.5%;
}
 .winners-table {
  width: 80%;
 }
 

  .langMenu {
    width: 20%;
  }
  .quiz-qa{
    width: 100%;
    margin-bottom: 1%;
  }

  .imgq-container, .imga-container {
    width: 50vw;
    /* margin-top: 2.5%; */
  }

  .quiz-image, .quiz-answer-image {
    max-width: 50vw;
  }

  .answer {
    display: flex;
    flex-direction: column;
  }

  .answer-container {
    width: 100%;
  }

  a.single {
    max-width: 50vw;
  }
 
  }


  @media only screen and (max-width:1024px) {
    .quiz {
      flex-direction: column;
      width: 100%;
      align-items: center;
        }

        .imgq-container, .imga-container {
          width: 70vw;
          /* margin-top: 2.5%; */
        }
a.single {
  display: flex;
  justify-content: center;
  width: 90vw;
}
.quiz-image, .quiz-answer-image {
          max-width: 90vw;
        }
  }

  @media only screen and (max-width:375px) and (max-height:667px) {
    
  }