html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: #ffffff;
}

.page-landing {
  min-height: 100vh;
  min-height: 100dvh;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #adadad;
  font-family: "Calibri", Arial, sans-serif;
  font-size: 25px;
}

.main-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.main-content a {
  color: inherit;
}

.title {
  margin-bottom: 5px;
}

.company-logo img {
  max-width: 150px;
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .page-landing {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 24px 16px 32px;
    box-sizing: border-box;
    font-size: 20px;
  }

  .main-content {
    position: static;
    left: auto;
    top: auto;
    transform: none;
    max-width: 100%;
  }

  .title {
    font-size: 1.5rem;
  }
}
