* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* About */
.about {
  margin-top: 18vh;
  min-height: 78vh;
  height: fit-content;
  padding: 0 10.5vw;
  display: flex;
  flex-direction: column;
  justify-content: end;
}

.about h1 {
  color: #8f2121;
  font-size: 72px;
  line-height: 1.1em;
  initial-letter: -5px;
}

.about p {
  color: rgb(100, 39, 20);
  font-size: 20px;
  line-height: 1.9em;
}

@media (max-width: 525px) {
  .about {
    padding: 0 4vw;
  }

  .about h1 {
    font-size: 60px;
  }

  .about p {
    font-size: 18px;
  }
}
