@import url("https://fonts.googleapis.com/css2?family=Fasthand&family=Roboto+Mono:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&display=swap");
body {
  font: 18px "Roboto Mono", sans-serif;
  color: rgb(255, 255, 255);
  text-shadow: 0 4px 30px rgba(214, 203, 226, 0.6);
  min-height: 100vh;
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
body::before {
  content: " ";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("./assets/bg.jpg") no-repeat center;
  background-size: cover;
  -webkit-animation: backgroundZoomAnimate 30s forwards;
          animation: backgroundZoomAnimate 30s forwards;
}

@-webkit-keyframes backgroundZoomAnimate {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.4);
  }
}

@keyframes backgroundZoomAnimate {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.4);
  }
}
.profile-card {
  box-shadow: 0 18px 400px -60px rgb(255, 255, 255);
  border-radius: 50px;
  width: 650px;
  position: relative;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 2px solid rgba(82, 235, 227, 0.3882352941);
  padding: 3rem 5rem;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .profile-card {
    width: auto;
  }
}
.profile-card__img img {
  margin: auto;
  width: 200px;
  height: 200px;
  border-radius: 10%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  box-shadow: 0 10px 100px -10px rgb(255, 255, 255);
}
.profile-card__desc {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.profile-card__desc h1 {
  font-size: 2.5rem;
  font-weight: bold;
}
.profile-card__desc h1 + div {
  font-size: 25px;
}
.profile-card__info {
  display: flex;
  justify-content: center;
  gap: 50px;
}
@media screen and (max-width: 576px) {
  .profile-card__info {
    gap: 30px;
  }
}
.profile-card__info > div {
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
}
.profile-card__info > div > *:first-child {
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 2rem;
  margin-bottom: 15px;
}
.profile-card__info > div > *:last-child {
  font-size: 16px;
  opacity: 0.7;
}
.profile-card__social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.profile-card__social a {
  display: inline-flex;
  width: 60px;
  height: 60px;
  margin: 15px;
  border-radius: 40%;
  align-items: center;
  justify-content: center;
  color: white;
  position: relative;
  flex-shrink: 0;
  transition: all 0.2s;
}
@media screen and (max-width: 700px) {
  .profile-card__social a {
    width: 50px;
    height: 50px;
    margin: 10px;
  }
}
@media screen and (min-width: 700px) {
  .profile-card__social a:hover {
    transform: scale(1.3) translateY(-5px);
  }
}
.profile-card__social a.facebook {
  background: linear-gradient(45deg, #3b5998, #0078d7);
  box-shadow: 0 4px 30px rgba(193, 205, 219, 0.5);
}
.profile-card__social a.twitter {
  background: linear-gradient(45deg, #1da1f2, #0e71c8);
  box-shadow: 0 4px 30px rgba(196, 211, 223, 0.7);
}
.profile-card__social a.linkedln {
  background: linear-gradient(45deg, #4274c0, #42a3f3);
  box-shadow: 0 4px 30px rgba(195, 207, 214, 0.5);
}
.profile-card__social a.github {
  background: linear-gradient(45deg, #333333, #626b73);
  box-shadow: 0 4px 30px rgba(203, 210, 216, 0.6);
}
.profile-card__social a.instagram {
  background: linear-gradient(45deg, #405de6, #5851db, #833ab4, #c13584, #e1306c, #fd1d1d);
  box-shadow: 0 4px 30px rgba(214, 203, 226, 0.6);
}
.profile-card__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
@media screen and (max-width: 576px) {
  .profile-card__actions {
    flex-direction: column;
    gap: 1.5rem;
  }
}
.profile-card__actions > button {
  font-weight: bold;
  font-size: 22px;
  padding: 15px 0;
  min-width: 250px;
  border-radius: 50px;
  text-align: center;
  color: white;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 700px) {
  .profile-card__actions > button {
    min-width: 170px;
  }
}
@media screen and (max-width: 576px) {
  .profile-card__actions > button {
    min-width: inherit;
    width: 100%;
    max-width: 350px;
  }
}
@media screen and (min-width: 576px) {
  .profile-card__actions > button:hover {
    transform: translate(-5px);
  }
}
.profile-card__actions > button.blue {
  background: linear-gradient(45deg, #1da1f2, #0e71c8);
  box-shadow: 0 4px 30px rgba(19, 127, 212, 0.4);
}
.profile-card__actions > button.blue:hover {
  box-shadow: 0 7px 30px rgba(214, 227, 236, 0.75);
}
.profile-card__actions > button.orange {
  background: linear-gradient(45deg, #5135a5, #f05924);
  box-shadow: 0 4px 30px rgba(223, 45, 70, 0.75);
}
.profile-card__actions > button.orange:hover {
  box-shadow: 0 7px 30px rgba(240, 220, 223, 0.75);
}/*# sourceMappingURL=styles.css.map */