.about {
  overflow-y: scroll;
  margin: 0 auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-width: 70vw;
  height: calc(100vh - 360px);
  border: 1px solid var(--primary);
  border-radius: 8px;
  padding: 2rem;
}

.about::-webkit-scrollbar {
  display: none;
}

.about h1 {
  font-size: 18px;
  width: max-content;
}

.about p {
  font-weight: 300;
  text-transform: none;
  font-size: 18px;
  color: var(--primary);
}

.socials {
  display: flex;
  justify-content: center;
  margin-top: 88px;
  margin-bottom: 48px;
}

.socials svg {
  width: 36px;
  margin: 0 16px;
  height: 36px;
  fill: var(--primary);
}

.socials image {
  width: 36px;
  height: 36px;
}

@media (width >= 576px) {
  .about {
    max-width: 65vw;
    padding: 3rem;
  }
  .about h1 {
    font-size: 20px;
  }
  .about p {
    font-size: 20px;
  }
  .socials {
    margin-top: 80px;
    margin-bottom: 64px;
  }
  .socials svg {
    width: 40px;
    margin: 0 20px;
    height: 40px;
  }
  .socials image {
    width: 40px;
    height: 40px;
  }
}
@media (width >= 768px) {
  .about {
    max-width: 60vw;
    padding: 4rem;
  }
  .about h1 {
    font-size: 24px;
  }
  .about p {
    font-size: 24px;
  }
  .socials {
    margin-top: 64px;
    margin-bottom: 80px;
  }
  .socials svg {
    margin: 0 24px;
  }
}
@media (width >= 1224px) {
  .about {
    max-width: 50vw;
    height: calc(100vh - 356px);
  }
  .socials {
    margin-top: 56px;
    margin-bottom: 48px;
  }
  .socials svg {
    width: 56px;
    margin: 0 40px;
    height: 56px;
  }
  .socials image {
    width: 56px;
    height: 56px;
  }
}
