#sizing-of-components {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 70px 15px 100px 15px;
  max-width: 930px;
  width: 100%;
  > div {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 20px 0px 0px 0px;
    > div {
      display: flex;
      flex-direction: column;
      margin: 20px 0px 0px 0px;
      width: 30%;
      @media (max-width: 900px) {
        width: 45%;
      }
      @media (max-width: 600px) {
        width: 100%;
      }
      > a {
        border-radius: 5px;
        box-shadow: 1px 1px 3px var(--colorBlue);
        display: flex;
        flex-wrap: wrap;
        gap: 0px 10px;
        font-family: 'Roboto Black', sans-serif;
        justify-content: space-between;
        margin: 10px 0px 10px 0px;
        padding: 10px 20px 10px 20px;
        text-decoration: none;
        > p {
          &:nth-of-type(2) {
            color: var(--colorGreen);
            flex: 1;
            font-family: 'Roboto Black', sans-serif;
            text-align: right;
          }
        }
      }
      > h2 {
        font-size: 2.4rem;
      }
    }
  }
  > p {
    margin: 5px 0px 5px 0px;
  }
}
