:root {
  --background: #f5f2ec;
  --surface: #ffffff;
  --text: #171717;
  --muted: #555555;
  --border: #d8d2c7;
  --accent: #7b2f22;
  --shadow: 0 24px 70px rgba(23, 23, 23, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100%;
  margin: 0;
  color: var(--text);
  background: var(--background);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}

.email-address {
  color: var(--accent);
  font-weight: 700;
  white-space: nowrap;
}

.notice-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 4vw, 3rem);
}

.notice-modal {
  width: min(100%, 40rem);
  padding: clamp(1.5rem, 5vw, 3rem);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

h1 {
  margin: 0;
  font-size: clamp(2rem, 7vw, 3.75rem);
  line-height: 1;
  letter-spacing: 0;
}

.notice-modal p:last-child {
  margin: 1rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2.5vw, 1.15rem);
}
