@font-face {
  font-family: "Poppins";
  src: url(Poppins-Regular.woff2);
  font-weight: 400;
}
@font-face {
  font-family: "Poppins";
  src: url(Poppins-Bold.woff2);
  font-weight: 700;
}
* {
  box-sizing: border-box;
}
body {
  background-image: url(background.svg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  padding: 0;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  padding: 2rem;
  overflow: hidden;
}
h1 {
  font-size: 1.2em;
}
p {
  margin-top: 0;
}
figure {
  margin: 0;
}
figure.logo {
  width: 100vw;
  max-width: 600px;
}
figure.illustration {
  display: none;
}
@media only screen and (min-width: 800px) {
  figure.illustration {
    display: block;
  }
}
.illustration.illustration1 {
  width: 400px;
  margin-left: 100px;
}
.illustration.illustration2 {
  width: 500px;
}
figure.illustration img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
a {
  color: inherit;
}
.container {
  /* width: 800px; */
  max-width: 100%;
}
.illustration-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.content-wrapper {
text-align: center;
}
