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

body {
  background: black;
  color: white;
  font-family: sans-serif;
}

.info-page {
  min-height: 63vh;
  display: grid;
  grid-template-rows: auto 1fr;  
  padding: 24px 48px;
  row-gap: 75px;
}

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

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

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

.info-header a {
  justify-self: end;
  color: white;
  text-decoration: none;
}

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

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


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


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


.info-text {
  max-width: 420px;
  font-size: 18px;
  line-height: 1.3;
}

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

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

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

  .info-text {
    max-width: 100%;
  }
}



