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

* {
  font-family: "Poppins", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f4f4f4;
}

.profile-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 370px;
  width: 100%;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 24px;
  position: relative;
}

.profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 35%;
    width: 100%;
    border-radius: 24px 24px 0 0;
    background-color: #4070f4;
}

.profile-image {
  position: relative;
  height: 150px;
  width: 150px;
  background-color: #4070f4;
  border-radius: 50%;
  padding: 3px;
}

.p-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #fff;
}

.text-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 15px;
  gap: 5px;
}

.name {
  font-weight: 500;
  font-size: 22px;
}

.job {
  font-weight: 400;
  font-size: 15px;
}

.media-buttons {
  display: flex;
  align-items: center;
  margin-top: 15px;
}

.link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  height: 34px;
  width: 34px;
  border-radius: 50%;
  margin: 0 8px;
  background-color: #4070f4;
  font-size: 18px;
  text-decoration: none;
  transition: all 0.3s;
}

.link:hover {
    opacity: 0.7;
}
.link:active {
    opacity: 0.9;
}

.buttons {
  display: flex;
  margin-top: 15px;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.btn {
  text-align: center;
  width: 150px;
  border-style: none;
  background-color: #4070f4;
  padding: 5px 30px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  transition: all 0.3s ease;
}

.btn:hover {
  cursor: pointer;
  background-color: #2f54b8;
}

.btn:active {
    background-color: #4070f4;
}

.btn{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.analytics {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 25px;
}

.data {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3px;
    color: #333;
    padding: 0 15px;
    border-right: 2px solid #e7e7e7;
}

.data:last-child {
    border-right: none;
}

.data i{
    font-size: 18px;
    margin-right: 6px;
}

.data i:hover {
    cursor: pointer;
}
