* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
  webkit-user-select: none;
  -webkit-touch-callout: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #f7f9fc;
  color: #222;
  padding: 20px;
  max-width: 100vw;
}

.main-container {
  max-width: 1200px;
  margin: auto;
  padding: 30px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.profile-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 30px;
}

.profile-img {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid #eee;
}

.bio-section {
  flex: 1;
}

h1 {
  font-size: 36px;
  margin-bottom: 10px;
}

.bio-text {
  font-size: 18px;
  margin-bottom: 10px;
}

.social-title {
  margin: 5px auto 15px 0;
  font-size: 2em;
  font-weight: 600;
}

.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-buttons a {
  background-color: #0066cc;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s;
}

.social-buttons a:hover {
  background-color: #004f9a;
}

.projects-section {
  text-align: center;
}

.projects-section h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.project-card {
  background: #f1f5f9;
  padding: 20px;
  border-radius: 12px;
  width: 280px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.project-card:hover {
  transform: translateY(-5px);
}

.project-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.project-card a {
  color: #0066cc;
  text-decoration: none;
  font-weight: bold;
}

@media (max-width: 700px) {
  .profile-section {
    flex-direction: column;
    align-items: center;
  }
  
  h1 {
    text-align: center;
  }
  
  .bio-text {
    text-align: center;
  }
}

hr {
  max-width: 95%;
  margin: 15px auto;
  border: none;
  height: 1px;
  background: black;
}

.footer {
  width: 100vw;
  text-align: center;
  background: #3A3A3A;
  color: #F0F0F0;
  font-size: 1em;
  padding: 30px;
  position: absolute;
  left: 0;
  }
