#help-screen {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-family: InriaSans-Regular, sans-serif;
  color: white;
  text-align: center;
  padding: 200px 100px 0 100px;
  gap: 20px;
  font-size: 25px;
  z-index: 10;
  background: none;
  transition: 1000ms ease-in-out;

  @media only screen and (max-width: 800px) {
    padding: 600px 20px 0 20px;
    bottom: unset;
    height: 100%;
    justify-content: unset;
    overflow: auto;
  }
}

#help-title {
  position: absolute;
  top: 20px;
}

.exercise-description {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 100%;
}

#exercise-types {
  display: flex;
  flex-wrap: wrap;
  position: absolute;
  margin: 0 100px;
  opacity: 0;
  top: 150px;
  flex-direction: row;
  justify-content: center;
  gap: 20px;
  align-items: center;
  background: white;
  font-family: Sansation-Regular, sans-serif;
  font-weight: bold;
  border-radius: 20px;
  border: 3px solid #bdbdbd;
  color: #393939;
  padding: 10px 20px;
  transition: 200ms ease-in-out;

  @media only screen and (max-width: 800px) {
    gap: 0;
    margin: 0;
    top: 150px;
    flex-direction: column;
    position: absolute;
    justify-content: center;
  }

  hr {
    height: 30px;
    width: 3px;
    background-color: var(--text-color);
    border: none;
    border-radius: 5px;

    @media only screen and (max-width: 800px) {
      display: none;
    }
  }
}

.exercise-type {
  cursor: pointer;
  border-radius: 10px;
  padding: 10px 20px;
  transition: 200ms ease-in-out;
}

.exercise-type:hover {
  cursor: pointer;
  background: #ececec;
  transition: 200ms ease-in-out;
}

.help-img {
  border-radius: 10px;
  border: 3px solid #b3b3b3;
  margin: 0 50px;
  float: left;

  @media only screen and (max-width: 800px) {
    float: none;
    margin: 0;
    width: 100%;
  }
}

.paragraph {
  text-align: left;

  @media only screen and (max-width: 800px) {
    text-align: left;
  }
}

.title {
  padding: 10px 0;
  font-weight: bold;
}

.key {
  background-color: white;
  border-radius: 10px;
  border: 3px solid #b3b3b3;
  color: black;
  font-weight: bold;
  font-size: 15px;
  margin-right: 15px;
  margin-left: 50px;
  padding: 5px 10px;
  vertical-align: middle;

  @media only screen and (max-width: 800px) {
    margin-left: 0;
    margin-bottom: 10px;
  }
}

.key:first-of-type {
  margin-left: 0;
}

#standard,
#drag-and-drop,
#sentence-order,
#sequence-order,
#true-false,
#input,
#matching,
#maths {
  display: none;
  opacity: 0;
  transition: 200ms ease-in-out;
}

.instructions {
  display: flex;
  flex-direction: row;
  transition: 200ms ease-in-out;
  background: #393939;
  color: white;
  justify-content: space-between;
  gap: 100px;
  border-radius: 10px;
  border: 3px solid var(--text-color);
  padding: 10px 20px;
  font-weight: bold;

  @media only screen and (max-width: 800px) {
    flex-direction: column;
    gap: 30px;
    padding: 20px;
    margin-bottom: 20px;
  }
}

.instructions ol {
  margin: 10px 0;
  width: fit-content;
  text-align: left;
}

.instructions span {
  color: var(--text-color);
  font-weight: bold;
  font-size: 30px;
  font-family: Sansation-Regular, sans-serif;
  text-align: left;
}

.limitations {
  text-align: right;

  @media only screen and (max-width: 800px) {
    text-align: center;
  }
}

.limitations div {
  margin: 10px 0;
  text-align: right;

  @media only screen and (max-width: 800px) {
    text-align: center;
  }
}
