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

body {
  font-family: 'Playwrite AU SA', serif;
  background-image: linear-gradient(315deg, #ffffff 0%, #e0e0e0 80%);
  min-height: 100vh;
  padding-top: 40px;
}

.container {
  background-image: linear-gradient(315deg, #dd4d00 0%, #291373 64%);
  border-radius: 30px;
  position: relative;
  font-size: 24px;
  padding: 50px 20px;
  text-align: center;
  margin: 0 20px;
}

.quote {
  color: #fff;
  font-weight: bold;
  display: block;
  margin-bottom: 20px;
  font-family: 'Anton', serif;
}

.profile-card {
  background-color: #fff;
  width: 280px;
  margin: 20px auto;
  border-radius: 20px;
  position: relative;
  padding: 5px 0 15px 0;
}

.profile-image {
  width: 120px;
  height: 120px;
}

.profile-info {
  display: block;
  font-size: 14px;
  color: #525252;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.profile-name {
  font-size: 20px;
  color: #000;
  font-weight: bold;
}

.social-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-links a {
  color: #fff;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.3s ease, color 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  color: #ffd700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 30px 15px;
    font-size: 20px;
  }

  .profile-card {
    width: 250px;
  }

  .profile-image {
    width: 100px;
    height: 100px;
  }

  .social-links {
    gap: 15px;
  }
  
  .social-links a {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 20px 10px;
    font-size: 18px;
  }

  .profile-card {
    width: 220px;
  }

  .profile-image {
    width: 90px;
    height: 90px;
  }

  .social-links {
    gap: 12px;
  }
  
  .social-links a {
    font-size: 20px;
  }
} 