
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

body {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  background-color: black;
  font-family: 'Poppins', sans-serif;
}

.container {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
width: 80%;
max-width: 600px;
background-color: black;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.profile-img {
width: 150px;
height: 150px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 15px;
}

.name {
font-size: 24px;
color: pink;
font-weight: bold;
margin-bottom: 15px;
  font-family: contrail-one;
}

.social-icons {
display: flex;
justify-content: space-between;
align-items: center;
width: 40%;
margin-top: 10px;
}

.social-icon {
width: 40px;
height: 40px;
border-radius: 50%;
background-color: pink;
display: flex;
justify-content: center;
align-items: center;
color: #333;
}

.social-icon i {
font-size: 24px;
color: black;
cursor: pointer;
}
