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

body {
  font-family: "Georgia", "Palatino Linotype", serif;
  background: #0f0f0f;
  color: #e8e8e8;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

main {
  text-align: center;
  padding: 2rem;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0px;
  margin-bottom: 0.5rem;
}

.hobbies {
  font-size: 0.9rem;
  color: #666;
  margin-top: 0.75rem;
  margin-bottom: 2.5rem;
}

.contact {
  margin-top: 1.5rem;
}

.contact a {
  color: #555;
  font-size: 0.85rem;
  text-decoration: none;
}

.contact a:hover {
  color: #e8e8e8;
}

.btn {
  display: inline-block;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s;
  background: #e8e8e8;
  color: #0f0f0f;
}

.btn:hover {
  opacity: 0.85;
}

.btn-secondary {
  background: transparent;
  color: #e8e8e8;
  border: 1px solid #333;
}

.btn-secondary:hover {
  border-color: #666;
  opacity: 1;
}
