:root {
  --primary-color: #009c9e;
  --darker-primary-color: #006366;
  --darkest-primary-color: #003c3e;
}
@font-face {
  font-family: 'Inter';
  src: url('Inter-VariableFont_opsz\,wght.ttf') format('truetype');
  font-weight: 100 900;
  font-display: swap;
}
body {
  color: var(--darkest-primary-color);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 1.5rem;
  line-height: 1.5;
  text-align: center;
  background-color: #000;
  background-image: url('background.png');
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
}
h1, h2 {
  color: var(--darker-primary-color);
  font-weight: bold;
}
h1 {
  font-size: 2em;
  margin: 3rem 0 2rem 0;
}
h2 {
  font-size: 1.5em;
  margin: 0.5rem 0 1rem 0;
}
a {
  color: var(--darker-primary-color);
  text-decoration: underline;
  font-weight: normal;
}
.block {
  width: 50rem;
  margin: 0 auto 2rem auto;
  padding: 0 0 1rem 0;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
  box-shadow: 0.5rem 0.5rem 0.7rem rgba(0,0,0,0.3);
}
.bot-trap {
  display: none;
}
