* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #2a2a2a;
  color: #f1f1f1;
  line-height: 1.6;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px;
  height: 100%;
}

.container {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

header {
  background-color: #333;
  padding: 60px 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  max-height: 95vh;
  overflow: hidden;
}

.profile img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 10px solid #FFD700;
  box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
}

h1 {
  font-size: 2.5em;
  margin-bottom: 10px;
  color: #fff;
}

p {
  font-size: 1.2em;
  color: #ddd;
  margin-bottom: 30px;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icon {
  font-size: 2em;
  color: #f1f1f1;
  text-decoration: none;
  transition: color 0.3s ease;
}

.social-icon:hover {
  color: #007bff;
}

.copyright-text {
  font-size: 14px;
  color: #bbb;
  text-align: center;
  margin-top: 148px;
}