h1 {
  color: white;
  font-family: 'HighSpeed';
  font-size: 40px;
  text-align: center;
  margin-top: 80px;
  margin-bottom: 70px;
}

* {
  margin: 0;
  padding: 0;
  font-size: 100%;
}

body {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  background: rgb(34, 34, 34);
  color: white;
}

.yt-img {
  width: 40px;
  vertical-align: middle;
}

.leaderboard .row {
  display: flex;
}

.leaderboard .row > * {
  flex: 1;
  text-align: center;
  padding: .5em 2em;
  font-size: 175%;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.header {
  font-family: 'HighSpeed';
}

.entry {
  font-family: 'Trebuchet MS';
}

a:link, a:visited {
  color: white;
  font-family: 'Trebuchet MS';
  font-size: 24px;
}

.link {
  text-align: center;
  margin-top: 5%;
  margin-bottom: 40px;
}

@font-face {
  font-family: 'HighSpeed';
  src: url('HighSpeed.woff2') format('woff2');
}

.question {
  text-align: center;
  font-size: 22px;
}

.answer {
    display: none;
    overflow: hidden;
}

#bottom-container {
  flex: 1;
  padding: .5em 12em;
  overflow: hidden;
  display: flex;
  justify-content: center;
}

.bottom-block-centre {
  width: 600px;
  height: fit-content;
  border-radius: 5px;
  margin-top: 80px;
  margin-right: 5px;
  margin-left: 5px;
  padding: 10px;
  background-color: rgb(255, 255, 255);
  color: rgb(255, 113, 62);
}

.bottom-block-centre:hover {
  transition: 0.2s;
  cursor: pointer;
  background-color: rgb(231, 231, 231);
}

.bottom-block-side {
  width: 400px;
  height: fit-content;
  border-radius: 5px;
  margin-top: 80px;
  margin-right: 5px;
  margin-left: 5px;
  padding: 10px;
  background-color: rgb(255, 113, 62);
}

.bottom-block-side:hover {
  transition: 0.2s;
  cursor: pointer;
  background-color: orange;
}