body {
  font-family: Inter, "sans-serif";
}

.content {
  display: flex;
  flex-direction: column;
}

.content img {
  max-width: 100%;
}

.content > div {
  text-align: center;
  margin: 20px auto;
}

div.logo > img {
  height: 40px;
}

div.title {
  position: relative;
  min-height: 80px;
}

div.title > span {
  position: absolute;
  inset: 50% 0px 0px 0px;
  transform: translateY(-50%);
  font-size: 3rem;
}

div.action > button {
  font-family: Inter;
  font-size: 1rem;
  cursor: pointer;
  padding: 12px 20px;
  border: 1px solid silver;
  border-radius: 4px;
}

@media screen and (max-width: 800px) {
  div.title > span {
    font-size: 2rem;
  }
}
