@font-face {
  font-family: "Overused Grotesk";
  src: url('https://raw.githubusercontent.com/RandomMaerks/Overused-Grotesk/v0.4/fonts/variable/OverusedGrotesk-VF.ttf');
  font-weight: 300 900;
}

:root {
  --primary-color: #1A92FF;
  --secondary-color: #FFDCB2;
}

body {
  margin: 0;
  padding: 0;
}

#splash {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  align-items: center;
  height: 100dvh;
  width: 100dvw;
  padding: 0;
}

#main-logo {
  width: 40vw;
}

@media screen and (orientation: portrait) {
  #main-logo {
    width: 60vw;
  }

  #splash {
    flex-direction: column;
  }
}

.button-collection {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding: 0;
  flex-direction: column;
}

.button-collection button {
  background-color: black;
  color: white;
  border-radius: 0;
  border-width: 0;
  padding: .5em;
  padding-right: 1em;
  padding-left: 1em;
  margin: 1em;
  font-size: 1.25em;
  font: "Overused Grotesk";
  font-weight: 300;
  cursor: pointer;
  width: 6em;
  transition: background-color 0.5s ease, color 0.5s ease;
}

.button-collection button:hover {
  color: var(--primary-color);
  transition: color 0.5s ease;
}