* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #2c2f33, #1a1b1d);
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  text-align: center;
  width: 90%;
  max-width: 400px;
  background: linear-gradient(195deg, rgba(104, 104, 104, 0.85), rgba(255, 255, 255, 0.1));
 /*  background: rgba(104, 104, 104, 0.85);*/
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(85, 69, 69, 0.1);
}

.profile img {
  width: 100%; 
  max-width: 300px; 
  height: auto; 
  border-radius: 15%; 
  margin-bottom: 15px;
  border: 1px solid transparent;
  padding: 5px;
  background-color: transparent;
  transition: transform 0.3s ease;
  object-fit: contain;

}

.profile img:hover {
  transform: scale(1.1);
}

.profile h1 {
  font-size: 24px;
  margin: 10px 0;
  font-weight: bold;
  color: #ffffff;
}

.links a {
  display: block;
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  text-decoration: none;
  padding: 15px;
  margin: 10px 0;
  border-radius: 12px;
  font-weight: 600;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.links a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.social-icons {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  gap: 20px;
}

.social-icons a {
  display: inline-block;
  transition: transform 0.3s ease;
}

.social-icons a:hover {
  transform: scale(1.2);
}

.icon {
  width: 40px;
  height: 40px;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}
