html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, sans-serif;
  background: #F4EEEB;
  color: #000000;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 100vh;
}

.container {
  text-align: center;
  max-width: 500px;
  padding: 20px;
}

.portrait {
  width: 180px;
  display: block;
  margin: 0 auto 20px auto;
}

h1 {
  margin-bottom: 10px;
  font-size: 2rem;
}

.subtitle {
  opacity: 0.8;
  margin-bottom: 20px;
}

.links a {
  color: #38bdf8;
  text-decoration: none;
  margin: 0 10px;
}

.links a:hover {
  text-decoration: underline;
}