#title, #tagline {
  color: white;
}

#page {
  flex-grow: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#card {
  /* background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(250,250,250,1) 50%); */
  width: 75%;
  height: 35%;
  animation: enter var(--time);
  transition: var(--time);
  justify-content: center;
}

#card a {
  color: #03A9F4;
  text-decoration: none;
}

#refresh {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  box-shadow: 0px 8px 8px 5px #00000022;
  background-color: #eee;
}
#refresh:focus {
  background-color: #eee;
  box-shadow: 0px 6px 6px 2px #00000022;
}

#buttons {
  display: flex;
}

#buttons .button {
  background-color: var(--transparant);
  align-self: flex-start;
  margin: 1vw 1vw 2vw 1vw;
}

#text {
  color: #212121;
  font-size: min(8vw, 8vh);
  text-align: center;
}

footer {
  width: 100%;
  bottom: 0;
  left: 0;
  padding: 1vh;
  font-size: 2vh;
  text-align: center;
  background-color: var(--transparant);
  color: rgba(255, 255, 255, 0.7);
}

footer a {
  color: rgba(255, 255, 255, 0.7);
}