.scores {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 120px;

  h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 0%;
    color: #212121;
  }

  p {
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0%;
    color: #212121;
  }
}

.sophomore {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 120px;

  h2 {
    font-weight: 500;
    font-size: 36px;
    line-height: 38px;
    letter-spacing: 0%;
    color: #212121;
  }
}

@media screen and (max-width: 450px) {
  .scores,
  .sophomore {
    margin-top: 60px !important;

    h2 {
      font-size: 28px !important;
      line-height: 38px !important;
    }

    p {
      font-size: 12px !important;
      line-height: 23px !important;
    }

    .scores-table {
      overflow-x: scroll;
    }
  }
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .scores,
  .sophomore {
    margin-top: 100px;

    h2 {
      font-size: 32px;
      line-height: 44px;
    }

    p {
      font-size: 16px;
      line-height: 26px;
      max-width: 800px;
    }
  }

  .scores {
    .scores-table {
      overflow-x: auto;
    }
  }
}

  .scores-table {
      overflow-x: scroll;
    }
