@import url("https://rsms.me/inter/inter.css");

html {
  font-family: "Inter", sans-serif;
}

@supports (font-variation-settings: normal) {
  html {
    font-family: "Inter var", sans-serif;
  }
}

body {
  box-sizing: border-box;
  margin: 0px;
  color: white;
  background: linear-gradient(30deg, #182848 0%, #4b6cb7 100%);
}

a {
  text-decoration: none;
  color: white;
  padding-bottom: .2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0);
}

a:hover {
  border-bottom: 1px solid white;
}

p {
  margin: .5rem;
}

button {
  padding: .5rem .625rem;
  background: rgba(255, 255, 255, .1);
  border-radius: .25rem;
  border: 0px;
  cursor: pointer;
  font-size: 1rem;
  margin: 0px .5rem;
  font-family: inherit;
}

button:hover {
  background: rgba(255, 255, 255, .2);
}

button:active {
  background: rgba(255, 255, 255, .3);
}

button a:hover {
  border: 0px;
}

.buttonDimmed {
  background: none;
  color: white;
}

.buttonDimmed:hover {
  background: rgba(255, 255, 255, .1);
}

.buttonDimmed:active {
  background: rgba(255, 255, 255, .2);
}

.buttonGreyedOut {
  opacity: .5;
  cursor: default;
}

.buttonGreyedOut:hover {
  background: none;
}

section {
  display: flex;
}

h1 {
  font-size: 2rem;
  text-align: center;
}

.main {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
}

.footer {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  background: rgba(255, 255, 255, .05);
  padding: 1rem 0;
}

.footer a {
  margin: 0 1rem;
}
