.name-overlay {
  font-size: 80px;
  font-weight: 800;
  font-family: Inter;
}
@media (max-width: 768px) {
  .name-overlay {
    font-size: 40px !important;
  }
}
.container {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  font-family: "Segoe UI", sans-serif;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: justify;
}

.image {
  max-width: 100%;
  margin-bottom: 1rem;
}

.text {
  font-size: 1rem;
  color: #333;
}

/* PC view */
@media (min-width: 768px) {
  .content {
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
  }

  .image {
    flex: 1;
    max-width: 50%;
    margin-bottom: 0;
  }

  .text {
    flex: 2;
  }
}
