/* Google Fonts - Poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&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: #EEEEEE;
}

body::before {
  content: '';
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background: var(--color-darkblue);
  background-image: linear-gradient(115deg, rgba(58, 58, 158, 0.8), rgba(136, 136, 206, 0.7)), url('../assets/image/rimuru-tempest-bg-img.png');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.profile-card {
  max-width: 370px;
  width: 100%;
  background: #393E46;
  border-radius: 24px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  padding: 25px;

  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

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

.image {
  position: relative;
  width: 150px;
  height: 150px;
  overflow: hidden; 
  border-radius: 50%;
  background-color: #EEEEEE;
  padding: 3px;

  margin-bottom: 10px;
}

.image .profile-image {
  width: 100%; 
  height: auto; 
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #393E46;
}

.profile-card .text-data {
  display: flex;
  flex-direction: column;
  align-items: center;
  color:#EEEEEE;
}

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

.text-data .title {
  font-size: 15px;
  font-weight: 400;
}

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

.media-buttons .link {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EEEEEE;
  font-size: 18px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  margin: 0 8px;
  text-decoration: none;
}

.profile-card .buttons {
  display: flex;
  align-items: center;
  margin-top: 25px;
}

.buttons .button {
  color: #222831;
  font-size: 14px;
  font-weight: 400;
  border: none;
  border-radius: 24px;
  margin: 0 10px;
  padding: 8px 24px;
  background-color: #F5F5FA;
  cursor: pointer;
  transition: all 0.3s ease;
}

.buttons .button:hover {
  background-color: #fff;
}

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

.analytics .data {
  display: flex;
  align-items: center;
  color: #EEEEEE;
  padding: 0 20px;
  border-right: 2px solid #6E7681;
}

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

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

