* {
  box-sizing: border-box;
}
html {
    background-color: #020609;
}
.grid-container {
  display: block;
  grid-template-columns: 988px;
  grid-gap: 0px;
  background-color: #020609;
  padding: 0px;
  line-height: 0;
  margin: auto;
  max-width: 988px;
  justify-content: space-evenly;
}
.grid-container > div {
  background-color: 020609;
  text-align: left;
  position: relative;
  h4 {margin-bottom:0}
  padding: 0px;
  margin: 0px;
  font-size: 16px;
  background-color: #020609;
  font-family: Georgia;
  grid-gap: 0px;
}
.item1 {
  grid-area: 1 / 2 / span 4 / span 1;
}

.text-box {
  position: absolute;
  top: 15px;
  width: 80%;
  left: 25px;
  h2 {margin-bottom:0}
  margin: 0px;
  line-height: 1.3;
  padding-left: 20px;
  padding-right: 20px;
}


@media only screen and (min-width: 1180px) {
  .text-box h3 {
    font-size: 40px;
  }
  .text-box p {
    font-size: 45px;
  }
}
@media only screen and (max-width: 1179px) {
  .text-box h3 {
    font-size: 46px;
  }
  .text-box p {
    font-size: 45px;
  }
}
@media only screen and (max-width: 767px) {
  .text-box h3 {
    font-size: 30px;
  }
  .text-box p {
    font-size: 20px;
  }
}

.text-block {
  position: absolute;
  top: 50px;
  width: 80%;
  left: 0px;
  h2 {margin-bottom:0}
  margin: 0px;
  line-height: 1.3;
  background-color: rgba(255, 255, 255, 0.8);
  padding-left: 20px;
  padding-right: 20px;
}

@media only screen and (min-width: 1180px) {
  .text-block h3 {
    font-size: 40px;
  }
  .text-block p {
    font-size: 22px;
  }
}
@media only screen and (max-width: 1179px) {
  .text-block h3 {
    font-size: 46px;
  }
  .text-block p {
    font-size: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .text-block h3 {
    font-size: 30px;
  }
  .text-block p {
    font-size: 20px;
  }
}
}