.container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card {
  display: flex;
  flex-direction: column;
}
.card__avtr img {
  margin: auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  box-shadow: 0 15px 100px -10px black;
}
.card__desc {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.card__desc > h1 {
  font-size: 35px;
  font-weight: bold;
}
.card__desc > span {
  font-size: 14px;
  font-style: italic;
}
.card__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.card__text > span {
  font-size: 16px;
}
.card__scls {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.card__scls > a {
  display: inline-flex;
  position: relative;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  margin: 5px 15px 5px 15px;
  border-radius: 30%;
  color: white;
  transition: all 0.3s;
}
.card__scls > a:hover {
  transform: scale(1.2) translateY(-5px);
}
.card__scls > a.twitter {
  background-color: #00acee;
  box-shadow: 0 3px 10px black;
}
.card__scls > a.instagram {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  box-shadow: 0 3px 10px black;
}
.card__scls > a.telegram {
  background-color: #2AABEE;
  box-shadow: 0 3px 10px black;
}
.card__scls > a.steam {
  background-color: #2a475e;
  box-shadow: 0 3px 10px black;
}

@media screen and (max-width: 768px) {
  .card {
    gap: 15px;
  }
  .card__text {
    width: 100%;
  }
  .card__scls {
    flex-wrap: nowrap;
  }
  .card__scls > a {
    width: 50px;
    height: 50px;
    margin: 12px;
  }
}/*# sourceMappingURL=IndexPage.css.map */