body {
  margin: 0;
  padding: 0;
  font-family: Lato, sans-serif;
}

#root {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

#root_header {
  display: flex;
  justify-content: center;
  gap: 75px;
  margin: 50px;
}

#root_header > .title {
  font-size: 5.4em;
  font-weight: bold;
}

.mlsc-logo {
  margin-top: 0px;
  height: 120px;
  width: 120px;
}

#overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.733);
  z-index: 2;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: none;
  opacity: 0;
}

#overlay.show {
  display: block;
  opacity: 1;
}

#overlay > .ov-container {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 50px;
  color: white;
  transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#root_box {
  font-style: bold;
  min-height: 65vh;
  max-height: fit-content;
  width: 65vw;
  padding: 30px;
  border: 5px solid #213a62;
  border-radius: 27.5px;
  margin: 250px;
  margin-top: 50px;
  margin-bottom: 250px;
  background-color: #b5f0fa;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1em;
}

#root_box > .question {
  font-size: 32px;
  font-weight: bold;
  overflow-wrap: break-word;
}

#root_box > .options {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  gap: 20px;
  font-size: 24px;
  font-weight: 400;
}

#root_box > .options > .option {
  cursor: pointer;
  border: 2px solid #213a62;
  padding: 10px;
  border-radius: 17.5px;
  background-color: white;
}

#root_box > .options > .option:hover {
  background-color: #213a62;
  color: white;
}

#root_box > .options > .option:active {
  background-color: greenyellow;
  color: black;
}

#root_box > .footer {
  display: flex;
  justify-content: space-between;
  font-size: 24px;
  font-weight: 400;
  padding-bottom: 2px;
}

#root_box > .footer > .timer-box {
  color: #213a62;
}

#root_box > .footer > .submit {
  cursor: pointer;
  color: #213a62;
}

#root_footer {
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  height: 40vh;
  width: 100vw;
  background-color: #213a62;
}

#root_footer #credits {
  color: white;
  display: flex;
  justify-content: space-around;
  align-items: center;
  height: 40vh;
  width: 100vw;
  background-color: #213a62;
}

#root_footer #credits a:link,
#root_footer #credits a:visited {
  color: white;
  text-decoration: none;
}

#root_footer #credits > .left-pane {
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: normal;
  flex-wrap: wrap;
  gap: 1em;
}

#root_footer #credits > .middle-pane {
  height: 8em;
  border: 1px solid white;
}

#root_footer #credits > .right-pane {
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: normal;
  flex-wrap: wrap;
  gap: 1em;
}

#root_footer .github-repo,
#root_footer .github-repo a:link,
#root_footer .github-repo a:visited {
  padding: 2em;
  padding-left: 4px;
  font-size: 1em;
  color: white;
  text-decoration: none;
}

@media (max-width: 480px) {
  #root_header {
    gap: 15px;
    margin: 20px;
  }

  #root_header > .title {
    font-size: 3.6rem;
  }

  .mlsc-logo {
    margin-top: 0px;
    height: 70px;
    width: 70px;
  }

  #root_footer .github-repo,
  #root_footer .github-repo a:link,
  #root_footer .github-repo a:visited {
    padding: 2em;
  }
}
