strong, span, p, button, a, h1, h2, h3, h4, h5 {
  font-family: var(--body-font);
}

.background-container {
  font-family: var(--body-font);
  color: #F4F4F5;
  padding: 32px;
  background: #00308E;
  display: flex;
  flex-direction: row;
  gap: 32px;
  align-items: center;
  min-width: 850px;

  @media (max-width: 1040px) {
    gap: 12px;
    flex-direction: column;
    min-width: 0;
    align-items: center;
  }
}

#archdaily-logo {
  width: 100px;
  height: 62.376px;
  flex-shrink: 0;
  margin: 15px;

  @media (max-width: 1040px) {
    aspect-ratio: 100.00/62.38;
    width: 80px;
  }
}

.content {
  gap: 12px;
  max-width: 1150px;

  h1 {
    font-size: 20px;
  }

  p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
  }

  .description {
    color: #91D3FD;

    .email {
      color: #FFF;
    }
  }

  @media (max-width: 1040px) {
    h1 {
      font-size: 18px;
    }

    p {
      font-size: 14px;
    }
  }
}

.close-btn {
  color: inherit;
	background: none;
  border: none;
  padding: 8px;
  position: fixed;
  top: 0;
  right: 0;
}

.close-btn:hover,
.close-btn:focus {
  opacity: 0.8;
}

.close-btn .close-label {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}