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

body {
  font-family: 'Inter', sans-serif;
  background: #eee3ce;
  color: #000000;
}

.intro {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  background: #000;
}

.intro.zooming {
  animation: zoomOffScreen 0.9s ease-in forwards;
}

@keyframes zoomOffScreen {
  0% {
    transform: scale(1);
    filter: blur(0px);
    opacity: 1;
  }

  60% {
    transform: scale(12);
    filter: blur(2px);
    opacity: 1;
  }

  100% {
    transform: scale(35);
    filter: blur(10px);
    opacity: 0;
  }
}

.intro h1 {
  font-size: clamp(2rem, 6vw, 5rem);
  color: #fff;
  letter-spacing: 0.2em;
  text-align: center;
  pointer-events: none;
}

.intro .hint {
  margin-top: 16px;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #fff;
  pointer-events: none;
  animation: pulse 2.2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 0.15;
  }

  50% {
    opacity: 0.5;
  }
}

.main-content {
  opacity: 0;
  transition: opacity 0.5s ease-in;
}

.main-content {
  opacity: 0;
  transition: opacity .5s;
}

.main-content.visible {
  opacity: 1;
}

.main-content {
  width: min(1200px, 90%);
  margin: 80px auto;
}

.profile-container {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 80px;
  align-items: start;
}

.profile {
  width: 300px;
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 12px;
}

.main h1 {
  font-size: 3.5rem;
  margin-bottom: .4rem;
}

.main h5 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  opacity: .8;
}

.main p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.about-me,
.projects {
  margin-top: 100px;
}

.about-me h2,
.projects h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.about-me p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: .8rem;
}

.projects ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 0;
}

.projects li {
  border: 1px solid #ddd;
  padding: 20px;
  border-radius: 10px;
  transition: .2s;
}

.projects li:hover {
  transform: translateY(-4px);
}

.projects a {
  text-decoration: none;
  color: black;
  font-size: 1.15rem;
  font-weight: 600;
}

.contact {
  border-top: 1px solid #ddd;
  margin-top: 120px;
  padding-top: 90px;
  margin-top: 100px;
}

.contact h2 {
  font-size: 2.3rem;
  margin-bottom: 1rem;
}

.contact p {
  max-width: 800px;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  color: #555;
}

.contact ul {
  margin-top: 2rem;
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  flex-wrap: wrap;
}

.contact a {
  display: inline-block;
  text-decoration: none;
  color: #111;
  border: 2px solid #111;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  transition: all 0.25s ease;
}

.contact a:hover {
  background: #111;
  color: white;
  transform: translateY(-3px);
}