.about-me-container {
  width: 100%;
}

.about-me {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.about-me p {
  color: #7a7a7aaa;
  text-align: left;
  font-size: 15px;
  font-weight: 400;
  align-self: flex-start;
  margin-bottom: 0;
}

.about-me p:first-of-type {
    margin: 24px 0 6px 0;
}

@media (max-width: 430px) {
  .about-me p {
    font-size: 13px;
  }
}

.about-me iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  border-radius: 4px;
  transition: 0.08s;
  box-shadow: 0 3px 0 rgba(0,0,0,0.08);
}

.about-me iframe:hover {
  transform: scale(1.006);
  box-shadow: 0 3px 0 rgba(0,0,0,0.24);
}