

@import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #7c7c7c2e;
  font-family: "Poppins", sans-serif;
}

.card {
  width: 18rem;
  overflow: hidden;
  border-radius: 8px;
  padding: 1rem 1rem;
  margin: 1rem 1rem;
  transition: box-shadow 0.6s;
  box-shadow: 10px 10px 15px #7c7c7c2e, -10px -10px 15px #fff;
}

.card:hover {
  box-shadow: inset 10px 10px 15px #7c7c7c2e, inset -10px -10px 15px #fff;
}

.text {
  color: #4a4a4a;
}

.card .ring {
  height: 150px;
  width: 150px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #bababa4f;
  margin-left: auto;
  margin-right: auto;
}

.ring .image {
  height: calc(100% - 25px);
  width: calc(100% - 25px);
  border-radius: 50%;
}

.image img {
  height: 100%;
  width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

.presonal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.icon {
  width: 3rem;
  height: 3rem;
  border: 0;
  cursor: pointer;
  margin: 8px;
  display: flex;
  color: #202020;
  font-size: 1rem;
  border-radius: 50%;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  background-color: #ececec;
  box-shadow: 10px 10px 15px #c7c4c4, -10px -10px 15px #fff;
}

.icon:focus {
  box-shadow: inset 5px 5px 5px #c7c4c4, inset -5px -5px 5px #fff;
}

.fa-facebook {
  color: #1877f2;
}

.fa-youtube {
  color: red;
}

.fa-instagram {
  color: #e1306c;
}
.fa-whatsapp {
  color: #25d366;
}

.fa-twitter {
  color: #1da1f2;
}
.fa-linkedin {
  color: #1877f2;
}
.fa-tiktok {
  color: red;
}
.fa-dribbble {
    color: #EA4C89;
}

.action {
  display: flex;
  align-items: center;
  justify-content: center;
}

.InBtn {
  margin: 8px;
  padding: 12px 1.5rem;
  display: flex;
  border: none;
  font-weight: 500;
  cursor: pointer;
  border-radius: 8px;
  color: #202020;
  font-size: 1rem;
  align-items: center;
  text-decoration: none;
  justify-content: center;
  background-color: #ececec;
  box-shadow: 10px 10px 15px #c7c4c4, -10px -10px 15px #fff;
}

.InBtn:focus {
  box-shadow: inset 5px 5px 5px #c7c4c4, inset -5px -5px 5px #fff;
}
a {
    text-decoration: none;
}