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

body {
  font-family: Arial, sans-serif;
  color: #FFFFFF;
  background-color: #000000;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.main-container {
  text-align: center;
  padding: 20px;
}

/* Header Styles */
header h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 10px;
}

header h2 {
  font-size: 1.5rem;
  color: #007BFF;
}

/* Profile Image Styles */
.profile-container {
  margin: 20px 0;
}

.profile-image {
  width: 60%;
  max-width: 300px;
  border-radius: 10px;
}

/* Social Media Icons */
.social-container {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-container img {
  width: 50px;
  height: 50px;
  transition: transform 0.3s ease;
}

.social-container img:hover {
  transform: scale(1.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
  header h1 {
    font-size: 2.5rem;
  }

  header h2 {
    font-size: 1.2rem;
  }

  .profile-image {
    width: 80%;
    max-width: 200px;
  }

  .social-container img {
    width: 40px;
    height: 40px;
  }
}
