.about {
  margin: 1rem;
  padding: 1rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;

  background-color: var(--base);
  border: var(--border-info);
  border-radius: var(--border-radius);
  filter: var(--dropshadow);
}

.about-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  line-height: 1.25rem;
}

.about-text h1 {
  font-size: 1.5rem;
  font-weight: 800;
}

.about-image {
  background-color: var(--base);
  border: var(--border-info);
  border-radius: var(--border-radius);
  filter: var(--dropshadow);
}

@media (min-width: 800px) {
  .about:nth-child(even) {
    flex-direction: row-reverse;
  }
  .about:nth-child(even) h1 {
    text-align: right;
  }
  .about-image {
    height: 16rem;
  }
}

@media (max-width: 800px) {
  .about {
    flex-direction: column;
  }

  .about-image {
    width: 256px;
  }
}

@media (max-width: 350px) {
  .about-image {
    width: 128px;
  }
}
