/** @format */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  color: rgb(22, 22, 22);
}

body {
  background-color: #031e4f;
}

.container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;


  .footer {
    padding: 2rem;
    font-size: small;
    color: #fff;
  }
}

.inner-container {
  width: 40%;
  height: auto 1rem;
  justify-content: center;
  align-items: center;
  background-color: white;
  margin: 2.5rem auto .5rem;
  border-radius: 7px;
  padding: 1.5rem;
  box-shadow: #333539 0px 5px 15px;

  @media (max-width: 768px) {
    width: 80%;
  }

  h1 {
    border-bottom: 1.2px solid grey;
    padding-bottom: 0.5rem;
    font-size: 1.5rem;
    color: #031e4f;
  }

  h2 {
    padding: 1rem 0rem 0rem;
    font-size: 1rem;
  }

  h4 {
    margin-top: 0.5rem;
    text-align: center;
    background-color: #e7edf8;
  }

  #instructions ul {
    list-style-type: disc;
    margin-left: 20px;
  }

  .btn {
    background: #fff;
    color: #222;
    font-weight: 500;
    width: 100%;
    border: 1px solid #222;
    padding: 10px;
    margin: 7px 0;
    text-align: left;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;

    &:hover:not([disabled]) {
      background-color: #222;
      color: #fff;
    }

    &:disabled {
      cursor: no-drop;
    }
  }

  #btn2 {
    background-color: #031e4f;
    border-radius: 3px;
    color: white;
    padding: 0.6rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.8rem;
    display: none;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    font-weight: 500;

    &:hover {
      background-color: #053181;
    }

    #question-number {
      text-align: center;
      background-color: #edf3ff;
      color: #031e4f;
      padding: 0.3rem;
    }
  }

  .btn.correct {
    background: #9aeabc;
  }

  .btn.incorrect {
    background: #ff9393;
  }
}

#continue-btn {
  background-color: #031e4f;
  border-radius: 3px;
  color: white;
  padding: 0.6rem 2rem;
  border: none;
  cursor: pointer;
  font-size: 0.8rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1.2rem;
  font-weight: 500;

  &:hover {
    background-color: #053181;
  }
}
