:root {
  --bg: rgb(243, 246, 185);
  --panel: antiquewhite;
  --text: #111;
  --gap: 12px;
  --gap-tight: 6px;
  --radius: 16px;
  --border: 2px solid rgba(0, 0, 0, 0.15);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

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

body {
  margin: 0;
  min-height: 100vh;

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

  background: var(--bg);
  color: var(--text);

  font-family: "Mulish", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#CenterContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: var(--gap);
  padding: 40px 32px;

  background: var(--panel);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  width: min(560px, calc(100% - 32px));
}

.content {
  display: flex;
  flex-direction: column;
  gap: var(--gap-tight);
}

.card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;

  gap: var(--gap);
  padding: 40px 32px;

  background: var(--panel);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  width: min(560px, calc(100% - 32px));
}


.mulish-heavy {
  font-weight: 800;
}

h1 {
  margin: 0;
  line-height: 1.1;
}

p {
  margin: 0;
  opacity: 0.85;
}

a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}
a:hover {
  opacity: 0.85;
}
