html {
  background-color: #202020;
  font-family: LudosportNeoSans, Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  color: white;
}

.small-screen {
  display: none;
}

.link-box-container {
  width: 100%;
}

.link-box {
  text-align: center;
  background-color: #404040;
  padding: 10px;
  margin: 20px;
  margin-bottom: 0px;
  border: 4px solid #202020;
  border-radius: 10px;
}

a:link {
  color: white;
}

a:visited {
  color: white;
}

a:hover {
  color: grey;
}

a:active {
  color: grey;
}

.link-box>* {
  display: inline-block;
}

.title {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  width: 100%;
}

.collapse {
  display: none;
}

.collapse-button {
  height: 12px;
  align-self: flex-end;
}

@media screen and (max-width: 768px) {
  .small-screen {
    display: inherit;
  }

  .collapse:checked+.collapsible {
    display: none
  }

  label {
    cursor: pointer;
  }
}

.title-box {
  text-align: center;
}

.title-box h1 {
  margin-bottom: 0;
  margin-top: 10px;
}

.title-box h2 {
  margin-top: 5px;
  font-size: medium;
  font-style: italic;
}

.menu-box {
  text-align: center;
  background-color: #404040;
  padding: 10px;
  margin: 20px auto 0px auto;
  border: 4px solid #202020;
  border-radius: 10px;
  max-width: 400px;
}

.menu-box a {
  display: block;
  background-color: #606060;
  width: inherit;
  color: white;
  text-decoration: none;
  padding: 10px;
  margin: 5px;
  border: 1px solid #C0C0C0;
  border-radius: 10px;
}

.menu-box a:hover {
  background-color: #808080;
}