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

:root {
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --color-bg: #e8f4f8;
  --color-text: #2c3e50;
}

html {
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 800px;
  padding: 2rem;
  text-align: center;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.photo {
  margin-top: 2rem;
}

.photo img {
  max-width: 50%;
  height: auto;
  border-radius: 1rem;
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 1.75rem;
  }
}
