body {
  /* background-color: #f5f5f5; */
  padding: 0;
  margin: 0;
}

div.logoText {
  font-size: 50px;
}

div.all-subject {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 200px
}

div.subject {
  background-color: white;
  border: 1px solid #eee;
  display: flex;
  flex-direction: column;
  align-items: right;
  justify-content: center;
  text-align: right;
  padding: 4px 20px;
  box-shadow: 0 0 3px 0 #ddd;

  &:hover {
    background-color: #f4fff4;
    border-color: #d6f3d6;
    box-shadow: 0 0 3px #c7ecc7;

    div.question {
      background-color: white;
    }
  }

  div.title {
    display: flex;
    align-items: center;
    justify-content: space-between;

    div {
      color: #009865;
      font-weight: bolder;
    }
  }
}

div.question {
  background-color: #f1fffa;
  color: #009865;
  border: 1px solid #00986584;
  margin-top: 10px;

  div.top {
    display: flex;
    justify-content: space-between;
    align-items: center;

    div {
      font-size: 15px;
      font-weight: bold;
    }
  }

  div.bottom {
    padding-top: 10px;
    font-size: 14px;
    text-align: justify;
    color: black;
    text-indent: 10px;
  }
}

.icon-plus3,
.icon-minus1 {
  cursor: pointer;
}

.icon-minus1 {
  color: black;
}

.icon-plus3 {
  color: #009865;
}

@media screen and (max-width: 575px) {
  div.logoText {
    font-size: 30px;
    z-index: 1;
  }
}

@media screen and (max-width: 580px) {
  div.subject {
    width: 90%;

    div.title div {
      font-size: 18px;
    }
  }
}

@media screen and (min-width: 580px) {
  div.subject {
    width: 90%;

    div.title div {
      font-size: 20px;
    }
  }

  div.question {
    padding: 10px 20px 10px;

    div.top div {
      font-size: 16px;
    }
  }
}

@media screen and (min-width: 1120px) {
  div.subject {
    width: 60%;
  }

  div.question {
    padding: 10px 20px 10px;

    div.top div {
      font-size: 18px;
    }

    div.bottom {
      font-size: 16px;
    }
  }
}