* { box-sizing: border-box; margin: 0; padding: 0 }
html { width: 100%; height: 100% }
body {
  width: 100%;
  height: 100%;
  min-height: 460px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #62921b;
  color: #fff;
  font: 400 12pt "Open Sans",serif;
}
h2 {
  margin: 12px 0;
  padding: 0;
  font-size: 10pt;
  font-style: italic;
  font-weight: 300
}
p {
  margin: 12px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
}
a, a:visited {
  color: #fff;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 5px;
  background: #ffffff1a;
}
a:focus, a:hover {
  background: #033065;
}
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  display: inline-block;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}
