* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #c5edff 0%, #ffb8df 100%);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.container {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  padding: 40px;
  text-align: center;
  max-width: 38rem;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;

}

.profile-image {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #667eea;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.name {
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  background: linear-gradient(45deg, #d91deb, #1957b4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

a {
  padding: 12px 24px;
  border: none;
  border-radius: 12px;
  display: flex;
  gap: 1rem;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 500;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.linkedin {
  background: linear-gradient(45deg, #0077b5, #00a0dc);
}

.github {
  background: linear-gradient(45deg, #333, #555);
}

.resume {
  background: linear-gradient(45deg, #28a745, #20c997);
}

.message {
  background: #f7f7f7;
  padding: 2rem;
  margin-top: 1rem;
  border-radius: 10px;
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  font-style: italic;
  max-width: 38rem;
}

@media (max-width: 480px) {
  .container {
      padding: 30px 20px;
      flex-direction: column;
      gap: 1rem;
  }
  
  .name {
      font-size: 2rem;
  }
  
  .btn {
      font-size: 1rem;
  }
}