* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100dvh;
  overflow: hidden;
  font-family: Montserrat, system-ui, sans-serif;
}

.background-image {
  position: absolute;
  inset: 0;
  width: 100dvw;
  height: 100dvh;
  object-fit: cover;
  z-index: -1;
  min-width: 100%;
  min-height: 100%;
}

.container {
  width: calc(100% - 16px);
  margin: 0 auto;
  height: 100%;
  display: grid;
  place-items: center;
}

.content {
  width: 100%;
  max-width: 790px;
  background: var(--background-color);
  padding: 64px 40px;
  text-align: center;
}

.logo,
.title {
  margin-bottom: 24px;
}

.logo {
  max-width: 200px;
  max-height: 40px;
}

h1 {
  text-transform: uppercase;
  font: 700 24px/30px Montserrat, sans-serif;
}

.text,
.phone {
  margin-bottom: 16px;
  font: 500 20px/32px Montserrat, sans-serif;
}

.phone {
  font-weight: 600;
}

.social-media {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.social-media img {
  width: 32px;
  height: 32px;
}

@media (min-width: 768px) {
  .content {
    min-height: 435px;
    padding: 64px 96px;
  }
  h1 {
    font-size: 36px;
    line-height: 42px;
  }
  .social-media img {
    width: 16px;
    height: 16px;
  }
}
