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

body {
  background: linear-gradient(135deg, #d1d5db, #ef4444, #8b5cf6, #3b82f6);
  animation: gradientShift 0.5s ease infinite;
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  color: #1f2937;
  line-height: 1.6;
}

header {
  background: linear-gradient(to right, #1f2937, #4b5563);
  color: white;
  padding: 3rem 1rem;
  text-align: center;
}

header h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
  color: #d1d5db;
}

main {
  padding: 2rem 1.5rem;
  max-width: 1200px;
  margin: auto;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  font-weight: 600;
  color: #111827;
}

.repo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.repo-box {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  padding: 1.5rem;
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.25s ease-in-out;
}

.repo-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.08);
  border-color: #10b981;
}

.repo-box h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
  font-weight: 600;
}

.repo-box a {
  text-decoration: none;
  color: #3b82f6;
}

.repo-box a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.repo-box p {
  font-size: 0.95rem;
  color: #4b5563;
  margin-bottom: 1rem;
  min-height: 40px;
}

.repo-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: #6b7280;
}

footer {
  background-color: #1f2937;
  color: #d1d5db;
  text-align: center;
  padding: 1.5rem;
  margin-top: 3rem;
  font-size: 0.9rem;
}

@media (max-width: 640px) {
  header h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }
}

.link-group a {
  color: white;
  text-decoration: none;
}

#latest-project {
  animation: gradientShift 15s ease infinite;
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  color: #FFFFFF;
  line-height: 1.6;
}

#skills {
  animation: gradientShift 15s ease infinite;
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  color: #FFFFFF;
  line-height: 1.6;
}

header {
  position: relative;
  padding-bottom: 1rem;
}

header::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(270deg, 
    #d1d5db,
    #ef4444, 
    #8b5cf6,
    #3b82f6, 
    #d1d5db 
  );
  background-size: 800% 800%;
  animation: colorShift 15s ease infinite;
  border-radius: 4px;
}

@keyframes colorShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; } 
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

#I {
  animation: gradientShift 15s ease infinite;
  margin: 0;
  padding: 0;
  font-family: 'Nunito', sans-serif;
  color: #FFFFFF;
  line-height: 1.6;
}
