:root {
  --color-primary: #BDFF69;
  --color-light: #FFFFFF;
  --color-grey: #666;
  --color-dark: #111111;
  --font-title: 'Montserrat', sans-serif;
  --font-text: 'Open Sans', sans-serif;
}

html {
  font-family: var(--font-text);
  font-size: 16px;
}

body {
  background: var(--color-dark);
}

h1,h2 {
  font-family: var(--font-title);
  line-height: .85em;
}

h1 { font-size: 3.4rem; font-weight: 500; letter-spacing: -.1rem; }
h2 { font-size: 2rem; font-weight: 500; letter-spacing: -.1rem; }

h1 span { display: none; }

.page main {
  padding: 4rem 1.5rem 1.5rem 1.5rem;
}

.index main {
  overflow-x: hidden;
  text-align: center;
  color: var(--color-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  padding: 4rem 1.5rem 1.5rem 1.5rem;
  background: url('/img/background.webp') no-repeat center top / cover;
  min-height: 90vh;
}

img.logo {
  animation: 1s fadein;
  align-self: center;
  max-width: 180px;
  margin: 0 auto 2rem;
}

.index img.logo {
  align-self: center;
  margin: 0;
}

.index main p {
  font-size: 1.125rem;
  line-height: 1.625;
  color: var(--color-primary);
  font-weight: bold;
}
.sponsors span {
  font-size: .8rem;
}
.sponsors img {
  height: 40px;
  width: auto;
  display: inline-block;
  margin: 1rem;
}

.document {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  background: var(--color-light);
  color: var(--color-dark);
  padding: 3rem 1.5rem;
}

.document h2 {
  text-align: center;
  margin-top: 1em;
  margin-bottom: 1em;
}
.document h3 {
  margin-top: 1em;
  margin-bottom: 1em;
}
.document h4 {
  margin-top: 1em;
  margin-bottom: 1em;
}
.document p {
  font-size: .85rem;
  margin-bottom: 1rem;
}
.document ul {
  font-size: .85rem;
}

.document table {
  width: 100%;
  border-collapse: collapse;
  font-size: .85rem;
  margin-bottom: 1rem;
}

.document table thead {
  font-weight: bold;
}

.document table ul {
  font-size: .75rem;
  padding: 0 10px;
  list-style-position: inside;
}
.document table tr {
  vertical-align: top;
  border-bottom: 1pt solid var(--color-dark);
}
.document table td {
  padding: 8px 0;
}

p img {
  display: inline-block;
  vertical-align: middle;
  margin: 0 5px;
}

.tab {
  margin-left: 1rem;
}
.tab2 {
  margin-left: 2rem;
}

footer {
  padding: 1.5rem;
  text-align: center;
  font-size: .8rem;
  color: var(--color-grey)
}

a {
  color: white;
  text-decoration: none;
}
a:hover {
  color: var(--color-primary);
}

a,
button,
path {
  transition: color ease .5s, opacity ease .5s, background-color ease .5s, border-color ease .5s, fill ease .5s;
}

a,
button {
  cursor: pointer;
}

.text-center {
  text-align: center;
}

@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeout {
  from { opacity: 1; }
  to   { opacity: 0; }
}


@media (min-width: 1200px) {
  .index img.logo { max-width: 250px; }

  h2 { font-size: 2.5rem; }
}
