body,html {
  width: 100%;
  height: 100%;
  flex-direction: column;
  align-items: center;
  display: flex;
  justify-content: center;
  /* Gotta protect some eyes */
  background-color: rgb(0, 0, 0);
}

/* https://stackoverflow.com/a/64064033 */
iframe,.youtube{
    width: 100%;
    height: 80%;
  }

video{
    /* width: 100vw; */
    /* height: calc(100vw/2.3); */
    width: 100%;
    height: 80%;
}

.button,
button {
  display: inline-block;
  text-decoration: none;
  height: 48px;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  width: 300px;
  font-weight: 700;
  line-height: 48px;
  letter-spacing: 0.1px;
  white-space: wrap;
  border-radius: 8px;
  cursor: pointer;
}
button:hover,
.button:focus {
  color: #333;
  border-color: #888;
  outline: 0;
}
.button.button-primary {
  color: #fff;
  filter: brightness(90%);
}
.button.button-primary:hover,
.button.button-primary:focus {
  color: #fff;
  filter: brightness(90%);
}

/* Discord */
.button.button-discord {
    color: #ffffff;
    background-color: #5865f2;
  }
  .button.button-discord:hover,
  .button.button-discord:focus {
    filter: brightness(90%);
  }