@import url('https://fonts.googleapis.com/css2?family=Baloo+Bhaijaan+2:wght@400..800&display=swap');

* {
  font-family: "Baloo Bhaijaan 2", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#logo {
  max-width: 250px;
}

body {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 850px) {
  body {
    flex-direction: column;
  }
}

.card {
  max-width: 500px;
  /*border: thin solid;*/
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px;
}

.card h2,
.card p,
.card a{
  align-self: flex-start;
}

a.button {
  text-decoration: none;
  color: #000;
  display: block;
  background: #cecece;
  padding: 5px 15px;
  border-radius: 4px;
  cursor: pointer;
  margin-top: 25px;
  transition: .4s;
}
a.button:hover {
  background: #c2bebe;
}

#imprint {
  padding: 15px;
}

#imprint a.button {
  display: inline;
  background: none;
  padding: 0;
}

.footer {
  position: absolute;
  bottom: 10px;
}
.footer a {
  text-decoration: none;
  color: #000;
}
@media screen and (max-width: 850px) {
  .footer {
    width: 100vw;
    position: unset;
    text-align: center;
  }
}
