:root {
  --green-dark: #3bb266;
  --green-mid: #61c270;
  --green-light: #7fdc88;
  --orange-mid: #f5d142;
  --orange-dark: #cc8616;
  --bg-light: #d2f0d2;
  --text-dark: #0f2e0f;
  --accent: #3bb266;
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  border: 5px solid var(--green-dark);
  border-radius: 20px;
}

h1 {
  font-size: 2.5rem;
  background: var(--green-dark);
  color: white;
  width: 100%;
  padding: 0.75rem;
  border-radius: 10px 10px 0 0;
}

p {
  font-size: 1.1rem;
  max-width: 600px;
  margin-bottom: 1rem;
  font-weight: bolder;
  line-height: 1.6;
}

.badge {
  display: inline-block;
  background: var(--green-mid);
  color: white;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  margin: 1rem 0;
  box-shadow: 2px 2px 0 var(--green-dark);
}

.badge-warn {
  display: inline-block;
  background: var(--orange-mid);
  color: black;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: bolder;
  margin: 1rem 0;
  box-shadow: 2px 2px 0 var(--orange-dark);
}

.footer {
  position: absolute;
  bottom: 10px;
  font-size: 0.9rem;
  color: #333;
}

.note {
  display: table;
  font-size: 0.9rem;
  color: #333;
  background: white;
  border: 2px dashed var(--green-light);
  padding: 0.75rem 1rem;
  margin: 1rem auto 0 auto;
  border-radius: 10px;
  text-align: left;
}

a {
  color: var(--green-dark);
  text-decoration: underline;
}

a:hover {
  color: var(--green-mid);
}