@import url("https://fonts.googleapis.com/css2?family=Russo+One&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.container {
  font-family: "Russo One", sans-serif;
  background-color: white;
}
.container-header {
  background-color: #333087;
  background-image: url("./../img/stars.png");
  background-position: left top;
  background-repeat: repeat-x;
  background-size: 1000px;
  color: white;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  align-items: center;
  padding: 50px;
}
.container-header-logo-img {
  width: 100%;
}
.container-header-logo-text {
  grid-column: 2/span 3;
  text-align: center;
  text-transform: uppercase;
}
.container-header-logo-text h2:first-child {
  font-size: 64px;
}
.container-header-logo-text h2:last-child {
  font-size: 84px;
}
.container-header-intro-image {
  grid-column: 1/span 4;
}
.container-header-intro-image img {
  width: 100%;
}
.container-header-intro-image img:first-child {
  display: block;
}
.container-header-intro-image img:last-child {
  display: none;
}
.container-header-intro-left {
  grid-column: 1/span 2;
}
.container-header-intro-right {
  grid-column: 3/span 2;
}
.container-header-intro-left, .container-header-intro-right {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-self: stretch;
  justify-self: center;
}
.container-header-intro-left h2, .container-header-intro-right h2 {
  font-size: 52px;
}
.container-header-intro-left p, .container-header-intro-right p {
  font-size: 37px;
}
.container-header-intro-icon {
  margin-top: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.container-header-intro-icon img {
  max-width: 100px;
  width: 100%;
}
.container-body {
  padding: 40px;
}
.container-body-main img {
  width: 100%;
}
.container-body-main img:first-child {
  display: block;
}
.container-body-main img:last-child {
  display: none;
}
.container-body-intro img {
  width: 500px;
}
.container-body-text h3 {
  font-size: 62px;
  color: #e27601;
}
.container-body-text p {
  font-size: 32px;
}
.container-body-right, .container-body-left {
  display: flex;
  align-items: center;
  gap: 30px;
}
.container-body-right {
  flex-direction: row-reverse;
}
.container-footer {
  background-color: #333087;
  background-image: url("./../img/stars-with-clouds.png");
  background-position: center bottom;
  background-repeat: no-repeat;
  background-size: contain;
  color: white;
  padding: 20px;
}
.container-footer-logo, .container-footer-title {
  text-align: center;
}
.container-footer-title {
  text-transform: uppercase;
  font-size: 80px;
}
.container-footer-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 10%;
}
.container-footer-body-img, .container-footer-body-title {
  margin: 0 auto;
}
.container-footer-body-img {
  width: 80%;
}
.container-footer-body-title {
  font-size: 52px;
}
.container-footer-body-span {
  font-size: 42px;
  color: #ee7601;
  grid-column: 1/span 2;
}
.container-footer-body-block {
  font-size: 37px;
  background-color: #ee7601;
  border-radius: 10px;
  text-align: center;
  padding: 34px 64px;
}
.container-footer-logo {
  margin-bottom: 20%;
}
.container-footer-logo h2:first-child {
  font-size: 52px;
}
.container-footer-logo h2:last-child {
  text-transform: uppercase;
  font-size: 72px;
}

@media screen and (max-width: 800px) {
  .container-body-intro img {
    width: 100%;
  }
  .container-body-main img:first-child {
    display: none;
  }
  .container-body-main img:last-child {
    display: block;
  }
  .container-body-right, .container-body-left {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .container-header {
    grid-template-columns: 1fr;
  }
  .container-header-logo-text {
    grid-column: 1;
  }
  .container-header-intro-image, .container-header-intro-left, .container-header-intro-right {
    grid-column: 1;
  }
  .container-header-intro-icon {
    flex-direction: column;
  }
  .container-header-intro-image img:first-child {
    display: none;
  }
  .container-header-intro-image img:last-child {
    display: block;
  }
  .container-footer {
    background-size: cover;
  }
  .container-footer-body, .container-footer-title {
    display: none;
  }
}
@media screen and (min-width: 800px) and (max-width: 1100px) {
  .container-header-logo-img {
    grid-column: 1/span 2;
  }
  .container-header-logo-text {
    grid-column: 3/span 2;
  }
  .container-body-intro img {
    width: 300px;
  }
}