:root {
  --bg-color: #10935B;
  --text-color: #E1D4B9;
  --max-width: 42rem;
}

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

body {
  margin: 0;
  font-family: 'Tinos', Georgia, "Times New Roman", serif;
  background-color: var(--bg-color);
  color: var(--text-color);
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 500px;
  margin: 0 auto;
}

.content {
  width: 100%;
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.logo {
  width: 20rem;
  height: auto;
}

.title {
  margin: 0;
  font-family: 'Tinos', serif;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.1;
}

.text p {
  margin: 0 0 1.25rem 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.note {
  margin-top: 3rem;
  font-size: 0.85rem;
  line-height: 1.4;
}