body {
    padding: 0;
    margin: 0;
}
.social_media {
    position: inherit;
    top: 55%;
    transform: translateY(-50%);
    width: 100%;
    text-align: center;
}
.btn-social {
    display: inline-block;
    width: 90px;
    height: 90px;
    background: #f1f1f1;
    margin: 10px;
    border-radius: 30%;
    box-shadow: 0 5px -5px #00000070;
    color: #f59121;
    overflow: hidden;
    position: relative;
}
.btn-social i {
    line-height: 90px;
    font-size: 40px;
    transition: 0.5s linear; 
}
.btn-social:hover i {
    transform: scale(1.3);
    color: #f1f1f1;
}
.btn-social::before{
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: #3498db;
    transform: rotate(45deg);
    left: -110%;
    top: 90%;
}
.btn-social:hover::before {
    animation: aaa 0.9s 1;
    top: -10%;
    left: -10%;
}

body {
  font-family: cairo;
  margin: 0;
  padding: 15px;
  background-color: #ffffff;
}
.wrap {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
}
.profile {
  text-align: center;
  color: #000000;
}
.photo {
  border-radius: 50%;
  height:88px;
}
.profile_name {
  font-weight: bold;
  display: block;
}
.at {
  font-size: 15px;
}
.links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.links ul li {
  margin: 8px 0;
}
.link {
  
  padding: 12px;
  display: block;
  background-color: #ffffff;
  text-align: center;
  border: solid 1px;
  text-decoration: none;
  border-radius: 26px ;
  transition: ease all 0.3s;
  color: #000000;
}
.link:hover {
  opacity: 0.9;
}
.card {
  padding: 10px;
  background-color: #ffffff;
  border-radius: 4px;
}
.card h3 {
  margin: 0;
  color: #000000;
}
.card p {
  margin: 5px 0;
  font-size: 6px;
  color: #000000;
}


.copy-right {
    bottom: 10px;
            right: 19px;
}

@keyframes aaa {
    0% {
        left: -110%;
        top: 90%;
        50% {
            left: 10%;
            top: -30%

        }100%{
            top: -10%;
            left: -10%;
        }
        }
    }
}