#awards {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--background-brown-12);
  gap: 24px;
}

#awards img {
  width: 200px;
  height: 200px;
  border-radius: 16px;
  border: 2px solid var(--text-beige);
}

#awards p {
  font-size: 16px;
  line-height: 24px;
  margin: 0;
}

@media (min-width: 1024px) {
  #awards {
    flex-direction: row;
    gap: 96px;
  }

  #awards img {
    width: 400px;
    height: 400px;
  }

  #awards p {
    font-size: 21px;
    line-height: 35px;
    max-width: 600px;
  }
}
