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

body {
  background: #f5f7fa;
  min-height: 100vh;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.container {
  max-width: 600px;
  width: 100%;
}

.profile {
  text-align: center;
  margin-bottom: 30px;
}

.profile img {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  border: 3px solid white;
  margin-bottom: 15px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.profile h1 {
  color: #2d3436;
  margin-bottom: 10px;
}

.profile p {
  color: #636e72;
}

.links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.link {
  background: white;
  padding: 15px;
  border-radius: 12px;
  color: #2d3436;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.link:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.link img {
  width: 60px;
  height: 60px;
  border-radius: 8px;
  object-fit: cover;
}

.link-content {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.link i {
  color: #0984e3;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 30px;
}

.social-icons a {
  color: #2d3436;
  font-size: 24px;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
  color: #0984e3;
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .profile img {
    width: 120px;
    height: 120px;
  }
}
