body {
  margin: 0;
  padding: 0;
  background-color: #777; /* grey background */
  font-family: "Inter", sans-serif;
  color: #000; /* black text color */
}

.about-container {
  display: flex;
  justify-content: flex-start;
  padding: 10px;
}

.about-image {
  width: 40%;
}

.about-image > img {
  max-width: 100%;
  border-radius: 5px; /* Rounded corners */
  margin-left: 5%;
  margin-right: 5%;
}

.about-content {
  width: 60%;
  margin-left: 5%;
}

.about-title {
  font-family: "BAYON", sans-serif;
  font-size: 128px;
  color: #b28ede; /* Off white color */
  display: inline;
}

p {
  font-size: 26px;
  text-align: left;
}