@import url("https://fonts.googleapis.com/css2?family=Sono:wght@300;400;500;600;700&display=swap");
body {
  font: 18px "Sono", sans-serif;
  color: grey;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: url("MA3 Background Ex.png") no-repeat center;
  background-size: cover;
  -webkit-animation: backgroundZoomAnimate 30s forwards;
          animation: backgroundZoomAnimate 30s forwards;
}

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

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

.profile-card {
  -webkit-box-shadow: 0 18px 200px -60px black;
          box-shadow: 0 18px 200px -60px black;
  border-radius: 50px;
  width: 650px;
  position: relative;
  -webkit-backdrop-filter: blur(15px);
          backdrop-filter: blur(15px);
  border: 2px solid #ffffff40;
  padding: 1.5rem 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
}

@media screen and (max-width: 768px) {
  .profile-card {
    width: auto;
  }
}

.profile-card__img img {
  margin: auto;
  width: 240px;
  height: auto;
  border-radius: 20%;
  -o-object-fit: center;
     object-fit: center;
  display: block;
  -webkit-box-shadow: 0 10px 60px -10px rgba(13, 28, 39, 0.5);
          box-shadow: 0 10px 60px -10px rgba(13, 28, 39, 0.5);
}

.profile-card__desc {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
}

.profile-card__desc h1 {
  font-size: 2.7rem;
  font-weight: bold;
}

.profile-card__desc h1 + div {
  font-size: 20px;
}

.profile-card__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          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: 1px;
  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: .7;
}

.profile-card__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.profile-card__social a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  width: 55px;
  height: 55px;
  margin: 15px;
  border-radius: 40%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: grey;
  position: relative;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media screen and (max-width: 768px) {
  .profile-card__social a {
    width: 50px;
    height: 50px;
    margin: 10px;
  }
}

.profile-card__social a:hover {
  -webkit-transform: scale(1.2) translateY(-5px);
          transform: scale(1.2) translateY(-5px);
}

.profile-card__social a.facebook {
  background: linear-gradient(45deg, #343434, #6b6b6b);
  -webkit-box-shadow: 0 4px 30px rgba(100, 100, 100, 0.7);
          box-shadow: 0 4px 30px rgba(100, 100, 100, 0.7);
}

.profile-card__social a.twitter {
  background: linear-gradient(45deg, #767676, #585858);
  -webkit-box-shadow: 0 4px 30px rgba(100, 100, 100, 0.7);
          box-shadow: 0 4px 30px rgba(100, 100, 100, 0.7);
}

.profile-card__social a.instagram {
  background: linear-gradient(45deg, #242424, #343434, #585858, #606060, #6a6a6a);
  -webkit-box-shadow: 0 4px 30px rgba(100, 100, 100, 0.7);
          box-shadow: 0 4px 30px rgba(100, 100, 100, 0.7);
}

.profile-card__social a.linkedin {
  background: #585858;
  -webkit-box-shadow: 0 4px 30px rgba(100, 100, 100, 0.7);
          box-shadow: 0 4px 30px rgba(100, 100, 100, 0.7);
}

.profile-card__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2rem;
}

@media screen and (max-width: 576px) {
  .profile-card__actions {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5rem;
  }
}

.profile-card__actions > button {
  font-weight: bold;
  font-size: 22px;
  padding: 15px 0;
  text-align: center;
  min-width: 250px;
  border-radius: 50px;
  color: grey;
  cursor: pointer;
  -webkit-transition: all .2s;
  transition: all .2s;
}

@media screen and (max-width: 768px) {
  .profile-card__actions > button {
    min-width: 170px;
  }
}

@media screen and (max-width: 576px) {
  .profile-card__actions > button {
    min-width: inherit;
    width: 250px;
    max-width: 350px;
  }
}

@media screen and (min-width: 576px) {
  .profile-card__actions > button:hover {
    -webkit-transform: translateY(-5px);
            transform: translateY(-5px);
  }
}

.profile-card__actions > button.about {
  background: #4545457f;
  border: none;
}

.profile-card__actions > button.email {
  background: #4545457f;
  border: none;
}

#myModal {
  display: block;
  position: absolute;
  opacity: 0;
  z-index: -1;
  margin: auto;
  width: 100%;
  height: 100%;
  overflow: auto;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

#myModal.fade {
  opacity: 1;
  -webkit-transition: opacity 1s;
  transition: opacity 1s;
}

.modal-content {
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  color: #9b9b9b;
  padding: 20px;
  border: 2px solid #ffffff40;
  border-radius: 50px;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  width: 60%;
}

.close {
  color: #9b9b9b;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  float: right;
  font-size: 28px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: rgba(100, 100, 100, 0.7);
  text-decoration: none;
  cursor: pointer;
}
/*# sourceMappingURL=style.css.map */