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

*{
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}
body {
    font-family: sans-serif;
    min-height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background : linear-gradient(to right, #009dff, #ff0000);
    font-family: 'poppins';
    position: relative;
}

.profile-card {
    height: 350px;
    width: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
    border-radius: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.profile-content {
    padding-inline: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.profile-picture {
  width: 120px;
  height: 120px;
  background-color: #aaa;
  border-radius: 50%;
}
.profile-picture img{
    max-width: 100%;
}
.profile-name {
  margin-top: 10px;
  font-size: 24px;
  font-weight: bold;
}
.profile-description {
  margin-top: 5px;
  color: #777;
}
.social-icons {
  margin-top: 20px;
  list-style: none;
  padding: 0;
}
.social-icons li {
  display: inline-block;
  margin: 0 10px;
}
.social-icons a {
  color: #777;
  font-size: 24px;
  transition: color 0.3s ease;
}
.social-icons a:hover {
  color: #25a1ff;
}

.attribute{
    position: absolute;
    bottom: 10px;
}