html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
body {
  min-height: 100vh;             
  width: 100%;
  overflow-x: hidden;
  background-color: #000;
  background-image: url('background.png');
  background-size: cover;        
  background-position: center;   
  background-repeat: no-repeat;  
  background-attachment: fixed;  
  display: flex;
  justify-content: center;
  align-items: center;
}
.card {
  background: rgba(0, 0, 0, 0.55); 
  color: white;
  width: 90%;
  max-width: 320px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  backdrop-filter: blur(4px); 
  -webkit-backdrop-filter: blur(4px);
}
.profile-img {
  width: 90px;
  height: 90px;
  margin: 0 auto 15px;
  background: url('profile.gif') center/cover;
  border-radius: 50%;
}
.info {
  font-size: 1em;
  color: #ddd;
  margin-bottom: 40px;
}
.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}
.social-icon {
  color: #ddd;
  font-size: 1.8em;
  text-decoration: none;
  transition: color 0.3s ease;
}
.social-icon:hover {
  color: #007BFF;
}
