body {
  background: #252525;
  background-image: url(svg/about/background.svg);
  background-position-y: 45vh;
  background-repeat: no-repeat;
  background-size: cover;
}
a {
  color: #fff;
}
.mainPage {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  min-height: 100vh;
}
.about {
  padding: 0 7vw;
}
.title {
  display: flex;
  align-items: center;
}
.title p {
  font-size: 20px;
  white-space: nowrap;
  margin-right: 3vw;
}
hr {
  background: #fff;
  height: 1px;
  width: 100vw;
}
.about > .title {
  left: 0;
  right: 0;
  margin: 10vh auto 5vh auto;
  font-size: calc(40px + 100vw/1280);
}
.cardsWrapper {
  display: flex;
  justify-content: center;
}
.card {
  position: relative;
  background: #B2E8D4;
  color: #363636;
  box-sizing: border-box;
  min-width: 13vw;
  min-height: 220px;
  height: 25vh;
  padding: 20px;
  margin: 0 1vw 10vh 1vw;
  border-radius: 25px;
  transition: 0.5s;
  cursor: url(svg/pointer.svg), auto;
}
.sphere {
  position: absolute;
  top: 25px;
  left: 0;
  right: 0;
  margin: auto;
  cursor: url(svg/pointer.svg), auto;
}
.source {
  position: absolute;
  top: 75px;
  left: 0;
  right: 0;
  margin: auto;
  cursor: url(svg/pointer.svg), auto;
}
.sertificate {
  position: absolute;
  bottom: 25px;
  left: 0;
  right: 0;
  margin: auto;
  background: #353535;
  padding: 8px 8px 11px 8px;
  border-radius: 10px;
  color: #fff;
  width: 60%;
  text-decoration: underline;
  transition: 0.5s;
  cursor: url(svg/pointer.svg), auto;
}
.card:hover {
  background: #363636;
  color: #fff;
}
.card:hover > .sertificate {
  background: #B2E8D4;
  color: #363636;
}
.hobbyBlock > .title {
  display: flex;
  justify-content: center;
  margin: 10vh 0 5vh 0;
  font-size: calc(40px + 100vw/1280);
}
.hobbies {
  display: flex;
  align-items: flex-end;
  text-align: left;
  justify-content: space-around;
  flex-wrap: wrap;
}
.hobbies p {
  border-top: solid 2px #fff;
  font-size: 25px;
  margin: 0 5vw 5vw 5vw;
  cursor: url(svg/pointer.svg), auto;
}
.icon {
  width: 4vw;
  margin: 0 5vw;
  cursor: url(svg/pointer.svg), auto;
}
.team {
  margin-bottom: 15vh;
}
.team > .title {
  display: flex;
  justify-content: center;
  margin: 10vh 0 5vh 0;
  font-size: calc(40px + 100vw/1280);
}
.member > hr {
  width: 20px;
}
.members {
  display: flex;
  justify-content: center;
  text-align: center;
  font-size: 20px;
}
.member {
  margin-top: 5vh;
}
.contactWrapper {
  display: grid;
  grid-template-rows: max-content;
  grid-template-columns: max-content;
  justify-content: center;
}
.contact {
  min-width: 12vw;
  max-width: 300px;
  grid-row: 1/span 1;
  grid-column: 1/span 1;
  cursor: url(svg/pointer.svg), auto;
}
.contactLight {
  min-width: 12vw;
  max-width: 300px;
  animation: light 3s infinite;
  grid-row: 1/span 1;
  grid-column: 1/span 1;
  cursor: url(svg/pointer.svg), auto;
}
@media (max-width: 1100px) {
  .cardsWrapper {
    flex-wrap: wrap;
  }
  .card {
    min-width: 30vw;
    max-width: 300px;
  }
  .members {
    flex-direction: column;
  }
  .about > .text {
    margin-top: 5vh;
    font-size: 25px;
  }
}
