h1 {
    font-size: 3rem;
    display: flex;
    justify-content: center;
    font-family: var(--TEXT-FONT);
    font-weight: normal;
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.list__of__socials li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.bx, .bxl {
  font-size: 10vw;
}

.list__of__socials {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
}



@media screen and (max-width: 768px) {
    h1 {
        font-size: 1rem;
        display: flex;
        justify-content: center;
        padding-left: 2rem;
        padding-right: 2rem;
        font-family: var(--TEXT-FONT);
        font-weight: normal;
        text-align: center;
    }

    .list__of__socials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    flex-direction: column;
    gap: 1rem;
  }
  .list__of__socials li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bx, .bxl {
  font-size: 10vw;
}
    
}

@media screen and (max-height: 425px) and (min-aspect-ratio: 7/4) {
    h1 {
        font-size: 2.5rem;
        display: flex;
        justify-content: center;
        padding: 2rem;
        font-family: var(--TEXT-FONT);
        font-weight: normal;
        text-align: center;
    }

    .list__of__socials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    flex-direction: column;
    gap: 2rem;
  }
  .list__of__socials li {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bx, .bxl {
  font-size: 15vw;
}
    
}
