body {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 90vw;
    margin: auto;
    background-image: url("../images/background.png");
    background-position: center;
    background-size: 100%;
}

h3 {
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
}

p {
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
}

#titleText{
    border-radius: 10px;
    border-color: black;
    padding: 2%;
    background-color: #FFE6A7;
    margin: 0;
    text-align: center;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

#controlBox {
    padding-top: 2%;
    padding-bottom: 2%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
}

.controlButton {
    padding: 2%;
}

.returnButton{
    background-color: initial;
    background-image: linear-gradient(-180deg, #F13E28, #892217);
    border-radius: 6px;
    box-shadow: rgba(0, 0, 0, 0.1) 0 2px 4px;
    cursor: pointer;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    outline: 0;
    color: black;
    overflow: hidden;
    padding: 0 20px;
    pointer-events: auto;
    text-align: center;
    vertical-align: top;
    white-space: nowrap;
    border: 0;
    transition: box-shadow .2s;
    font-size: 20px;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
}

#statusBox {
    margin-top: 2%;
    margin-bottom: 2%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 80%;
    border: 2px solid #000000;
    background-color: #3DB441;
    border-color: #FFE6A7;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.controlButton {
  background-color: initial;
  background-image: linear-gradient(-180deg, #F13E28, #892217);
  border-radius: 6px;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  cursor: pointer;
  display: inline-block;
  height: 40px;
  line-height: 40px;
  outline: 0;
  overflow: hidden;
  color: black;
  padding: 0 20px;
  pointer-events: auto;
  text-align: center;
  vertical-align: top;
  white-space: nowrap;
  border: 0;
  transition: box-shadow .2s;
  font-size: 20px;
  font-family: 'Sofia Sans Extra Condensed', sans-serif;

}

.controlButton:hover {
  transform: scale(1.2);
}

.answerButton:not(:disabled) {
  background: #fff;
  border-radius: .375rem;
  border-style: solid;
  border-width: .125rem;
  border-color: #7261A3;
  box-sizing: border-box;
  color: #212121;
  font-family: Circular,Helvetica,sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  text-decoration: none;
}

.answerButton:not(:disabled):hover {
  transform: scale(1.5);
}

.answerButton:disabled {
    border-radius: .375rem;
    border-style: solid;
    border-width: .125rem;
    border-color: #7261A3;
    box-sizing: border-box;
    color: #212121;
    font-family: Circular,Helvetica,sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    text-align: left;
    text-decoration: none;
}


#gameContainer {
    display: flex;
    justify-content: center;
    flex-direction: row;
    width: 90%;
    border: 8px solid #000000;
    background-color: #FDB03F;
    border-color: #F13E28;
    border-radius: 10px;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
}

.contentBox {
    padding: 5%;
    width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#answersBox div h2 {
    text-align: center;
    font-size: 30px;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
}


#questionsBox div p {
    font-size: 30px;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
    text-align: left;
}

#statusBox h2 {
    font-size: 28px;
    letter-spacing: 2px;
    text-align: center;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
}

.popupDiv h3 {
    font-size: 48px;
    text-align: center;
}

.popupDiv p{
    font-size: 30px;
}

@media (max-width: 699px) {
    #questionsBox div p {
        font-size: 18px;
        font-family: 'Sofia Sans Extra Condensed', sans-serif;
        text-align: left;
    }
    
    #answersBox div h2 {
        text-align: center;
        font-size: 18px;
        font-family: 'Sofia Sans Extra Condensed', sans-serif;
    }
    
    #statusBox h2 {
        font-size: 18px;
        letter-spacing: 1px;
        text-align: center;
        font-family: 'Sofia Sans Extra Condensed', sans-serif;
    }
    
    #titleText{
        font-size: 36px;
        border-radius: 10px;
        border-color: black;
        padding: 2%;
        background-color: #FFE6A7;
        margin: 0;
        text-align: center;
        box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
    }
    
    #htpGif {
        width: 100%;
    }
    
    .controlButton {
      background-color: initial;
      background-image: linear-gradient(-180deg, #F13E28, #892217);
      border-radius: 6px;
      box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
      cursor: pointer;
      display: inline-block;
      height: 40px;
      line-height: 40px;
      outline: 0;
      color: black;
      overflow: hidden;
      padding: 0 20px;
      pointer-events: auto;
      text-align: center;
      vertical-align: top;
      white-space: nowrap;
      border: 0;
      transition: box-shadow .2s;
      font-size: 18px;
      font-family: 'Sofia Sans Extra Condensed', sans-serif;

    }
    
    .answerButton:not(:disabled) {
      background: #fff;
      border-radius: .375rem;
      border-style: solid;
      border-width: .125rem;
      border-color: #7261A3;
      box-sizing: border-box;
      color: #212121;
      font-family: Circular,Helvetica,sans-serif;
      font-size: 10px;
      font-weight: 700;
      line-height: 1.3;
      text-align: left;
      text-decoration: none;
    }
    
    .answerButton:disabled {
        border-radius: .375rem;
        border-style: solid;
        border-width: .125rem;
        border-color: #808080;
        box-sizing: border-box;
        color: #212121;
        font-family: Circular,Helvetica,sans-serif;
        font-size: 10px;
        font-weight: 700;
        line-height: 1.3;
        text-align: left;
        text-decoration: none;
    }


    .popupDiv p{
        font-size: 20px;
    }
    
    .popupDiv h3{
        font-size: 20px;
    }
}   

.answerButtonContainer {
    display: flex;
    justify-content: space-around;
}

.correctButton {
    background-color: green;   
}

.wrongButton {
    background-color: red;
}

#overlayDivHidden{
    display: none;
}

.answeredQuestion p {
    color: green
}

.popupDiv {
    margin: auto;
    padding: 1%;
    background-color: #FFE6A7;
    display: flex;
    flex-direction: column;
}

.hidden {
    display: none;
}

#overlayDiv {
    position: fixed;
    width: 100vw;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.3);
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column
}

.popupDiv h1 {
    text-align: center;
}

.popupDiv p {
    text-align: center;
}

#qrcode {
    display: flex;
    justify-content: center;
    padding-bottom: 5%;
}

h1 {
    font-size: 64px;
    letter-spacing: 4px;
    font-family: 'Sofia Sans Extra Condensed', sans-serif;
}




