body {
  background-color: #000;
  padding: 0;
  margin: 0;
  color: #fff;
  font-family: -apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif;
}

.wrapper {
  padding: 2rem;
}
@media screen and (min-width: 600px) {
  .wrapper {
    max-width: 50rem;
    margin: 0 auto;
  }
}

a {
  color: red;
}

.media--logotype {
  width: 100%;
}
.media--profile {
  width: 100%;
  border-radius: 9999rem;
}
.media--gallery {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: -ms-grid;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media screen and (min-width: 600px) {
  .media--gallery {
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  }
}
.media--gallery figure {
  margin: 0;
  padding: 0;
  position: relative;
}
.media--gallery img {
  position: relative;
  z-index: 1;
  width: 100%;
  filter: opacity(1);
  transition: 0.3s all ease-in-out;
}
.media--gallery img:hover {
  transform: scale(1.1);
  z-index: 50;
  transition: 0.3s all ease-in-out;
}

.bg--media {
  background: var(--passBg);
  background-size: cover;
}
.bg--black__transparent {
  background-color: rgba(0, 0, 0, 0.8);
}

a {
  text-decoration: none;
}

.btn--primary {
  display: block;
  width: 100%;
  border: 2px solid #fff;
  border-radius: 0;
  background: none;
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  margin: 0.5rem 0;
  padding: 0.5rem 0;
  transition: all 0.3s ease-in-out;
  text-align: center;
  background: #fff;
  color: #000;
  font-weight: 700;
}
.btn:hover {
  border-color: red;
  background: red;
  transform: scale(1.04);
}

.head--intro {
  display: grid;
  gap: 1rem;
  padding: 3rem 0 0 0;
}
.head--intro h1 {
  margin: 1rem 0;
  line-height: 100%;
  text-transform: uppercase;
}
.head--intro__logotype {
  border-bottom: 3px solid #fff;
}
@media screen and (min-width: 600px) {
  .head--intro {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 7rem 0;
  }
  .head--intro__logotype {
    border-right: 3px solid #fff;
    border-bottom: none;
    padding: 2rem 2rem 2rem 0;
  }
  .head--intro__message {
    display: grid;
    align-items: center;
  }
}

.about h1 {
  font-size: 1.7rem;
  margin: 1rem 0;
  line-height: 100%;
  text-transform: uppercase;
}
.about--profile {
  background: linear-gradient(to top right, rgb(22, 12, 57), rgba(95, 0, 139, 0.144));
  padding: 2rem 2rem 2rem 2rem;
  margin: 2rem 0;
  display: grid;
}
.about--profile h2 {
  margin: 0;
}
@media screen and (min-width: 600px) {
  .about--profile {
    grid-template-columns: 1fr auto;
    gap: 2rem;
  }
}
.about--profile__media {
  text-align: center;
}
.about--profile__media img {
  height: 12rem;
  width: 12rem;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 30px 60px -12px, rgba(0, 0, 0, 0.3) 0px 18px 36px -18px;
}
.about--extra {
  background: linear-gradient(to top right, rgb(126, 14, 14), rgba(139, 0, 0, 0.144));
  padding: 2rem 2rem 0.5rem 2rem;
  margin: 2rem 0;
  overflow: auto;
}
.about--extra h2 {
  margin: 0;
}
.about--extra__places {
  color: #b34e4e;
  text-transform: uppercase;
  font-weight: 900;
  font-size: 0.7rem;
  text-align: justify;
}
@media screen and (min-width: 600px) {
  .about--extra__places {
    font-size: 0.9rem;
  }
}

.footer--main {
  border-top: red 3px solid;
}
.footer--main h1 {
  text-transform: uppercase;
  font-size: 1.4rem;
}
