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

body {
  background: #000;
  color: #fff;
  font-family: system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
}

.contact-page {
  min-height: 50vh;
  display: grid;
  grid-template-rows: auto 1fr;
  padding: 24px 42px;
  row-gap: 0px;
}


.contact-header {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  font-size: 0.85rem;
  align-items: start;
}

.contact-header span:first-child {
  justify-self: start;
}

.contact-header span:last-of-type {
  justify-self: center;
}

.contact-header a {
  justify-self: end;
  color: #fff;
  text-decoration: none;
}

.contact-header a::after {
  content: "(close)";   
}

.contact-header a:hover {
  text-decoration: underline;
}


.contact-main {
  display: grid;
  grid-template-columns: 1fr 2fr;
  column-gap: 80px;
  align-items: center;
}


.contact-title {
  font-size: 111px;
  font-weight: bold;
}

.contact-text {
  font-size: 18px;
  line-height: 1.3;
}

.contact-text a {
  color: #fff;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

.contact-note {
  margin-top: 2rem;
}

@media (max-width: 800px) {
  .contact-page {
    padding: 20px;
    row-gap: 40px;
  }

  .contact-main {
    grid-template-columns: 1fr;
    row-gap: 32px;
    align-items: flex-start;
  }

  .contact-title {
    font-size: 2.5rem;
  }
}
