img {
  max-width: 100%;
}

h1 {
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 64px;
  color: var(--white);
  --current-color: var(--white);
}
h1 span {
  display: block;
}
h1 a {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: var(--white);
}
@media (max-width: 500px) {
  h1 {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

#otherInfo .txtCont {
  margin: 120px auto;
  max-width: 1000px;
  color: var(--white-secondary);
}
#otherInfo .txtCont a {
  color: var(--white);
  text-decoration: underline;
}
@media (max-width: 500px) {
  #otherInfo .txtCont {
    margin: 80px auto;
  }
}

.gallery {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.gallery img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery .twoGrid {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
}
.gallery .twoGrid > * {
  flex: 1 400px;
  width: 400px;
  min-width: 0;
}
.gallery .twoGrid .combinedImgs {
  display: flex;
  gap: 36px;
}
.gallery .twoGrid .combinedImgs > * {
  flex: 1 400px;
  width: 400px;
}
@media (max-width: 500px) {
  .gallery {
    gap: 21px;
  }
  .gallery .twoGrid {
    gap: 24px;
  }
  .gallery .twoGrid .combinedImgs {
    gap: 21px;
  }
}

.links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 120px 0;
}
.links a {
  color: var(--white);
  text-decoration: underline;
  display: flex;
  gap: 8px;
  align-items: center;
}
@media (max-width: 500px) {
  .links {
    margin: 80px 0;
  }
}/*# sourceMappingURL=about.css.map */