.about-section {
  width: 100%;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.about-container {
  max-width: 600px;
  text-align: left;
  color: var(--c-blk);
  padding: 1.2rem;
  margin-bottom: 1.5rem;
  background-color: var(--c-white);
}

.about-title {
  font-size: 1.3rem;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: inline-block;
}

.about-container p {
  font-family: "Typewriter", sans-serif;
  font-size: 13px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.about-container strong {
  font-weight: 700;
}

.about-btn-div {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
  text-align: left;
}
