.about__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  align-self: center;
  font-size: 1.3rem;
  padding: 1rem 0;
}
.about__container__reverse {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  align-self: center;
  font-size: 1.3rem;
  padding: 1rem 0;
}
.about__container img {
  max-width: 100%;
  padding: 2rem;
  object-fit: contain;
}
.about__container__reverse img {
  max-width: 34%;
  padding: 2rem;
  object-fit: contain;
}
.form__button,
.form__email {
  font-size: 0.8rem;
  padding: 0 1rem;
  color: grey;
}
.main-projects {
  padding-top: 120px;
}
.title__wrapper {
  padding-top: 10rem;
  text-align: center;
  flex-wrap: wrap;
  max-width: fit-content;
  align-self: center;
}
.title__wrapper {
  min-height: 35vh;
  margin-bottom: 12rem;
}
.project {
  padding: 30px;
}
.project__item {
  position: relative;
}
.project__item:after {
  content: "<HTML></HTML>";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  border-radius: 2;
  font-size: 36px;
  font-weight: 900;
  color: red;
  transform: rotate(-45deg) translate(-30%, -100%);
}
.project__item:nth-child(2):after {
  content: "<CSS></CSS>";
  right: 0;
  left: auto;
  transform: rotate(45deg) translate(30%, -100%);
}
.project__item:nth-child(3):after {
  content: "<JS></JS>";
}