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

:root {
  --black: #1c1b14;
  --grey: #7c7c6d;
  --grey-light: #d0d1c2;
}

body {
  font-family: "Libre Franklin", sans-serif;
  background: #f7f8ef;
  color: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 32px;
}

.brand {
  display: flex;
  align-items: center;
}

.brand-name {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.01em;
}

.header-link {
  font-size: 15px;
  font-weight: 500;
  color: var(--black);
}

.header-link:hover {
  text-decoration: underline;
}

/* Main */
.main {
  flex: 1;
  text-align: center;
  padding: 20px 32px 64px;
}

.title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0;
}

.title-img {
  display: block;
  width: 420px;
  max-width: 80vw;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 10px 3px rgba(0, 0, 0, 0.08));
}

/* Projects */
.projects {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
}

.project {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  transition: transform 0.2s ease;
}

.project:hover {
  transform: scale(1.03);
}

.project-thumb {
  display: block;
  width: 560px;
  height: 380px;
  max-width: 88vw;
  background: var(--grey-light);
  border-radius: 16px;
}

.project-title {
  font-size: 18px;
  font-weight: 600;
}

/* Footer */
.footer {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 40px 32px;
  font-size: 14px;
  font-weight: 500;
  color: var(--grey);
}

.footer a:hover {
  color: var(--black);
}
