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

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: white;
  background: linear-gradient(-45deg, #7b5cff, #a666f4, #3e1e68, #1c1b33);
  background-size: 400% 400%;
  animation: gradient 20s ease infinite;
  line-height: 1.6;
  padding: 3rem 2rem;
}

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

header {
  text-align: center;
  margin-bottom: 3rem;
}

header h1 {
  font-size: 3rem;
  font-weight: 700;
}

header h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-top: 0.5rem;
  color: #e5d1ff;
}

nav {
  margin-top: 1.5rem;
}

nav a {
  margin: 0 1rem;
  color: #d9b3ff;
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  text-decoration: underline;
}

section {
  max-width: 1000px;
  margin: 3rem auto;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #ffffff50;
  padding-bottom: 0.5rem;
}

.project {
  margin-bottom: 2rem;
}

.project h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.2rem;
}

.project a {
  color: #9cdcff;
  text-decoration: underline;
}

.project a:hover {
  color: #fff;
}
