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

body {
  background: #111;
}

.page-hero {
  background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.3)), url("../images/background.png");
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
  color: #fff;
  font-family: "Calibri", Arial, sans-serif;
  font-size: 25px;
}

.company-logo {
  position: absolute;
  top: 16px;
  left: 16px;
}

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

.contact-information a {
  color: inherit;
}

.contact-item {
  display: block;
}

.contact-item + .contact-item {
  margin-top: 10px;
}

.contact-label {
  display: inline;
}

.contact-value {
  display: inline;
  margin-left: 6px;
}

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

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

  .company-logo,
  .contact-information {
    position: static;
    left: auto;
    top: auto;
    bottom: auto;
    transform: none;
  }

  .contact-information {
    max-width: 100%;
    margin-top: 40px;
  }

  .contact-list {
    line-height: 1.4;
  }

  .contact-information h1 {
    font-size: 30px;
    margin: 0 0 40px;
  }

  .contact-item + .contact-item {
    margin-top: 30px;
    margin-left: 0;
  }

  .contact-label {
    display: block;
    font-size: 18px;
  }

  .contact-value {
    display: block;
    font-size: 26px;
    font-weight: 700;
    margin-left: 0;
  }
}
