* {
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
section {
  /* color: white; */
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: url(/img/SpaceBuilding.jpg) repeat;
  background-size: cover;
  background-position: left;
}
header {
  position: relative;
  top: 0px;
  width: 100%;
  padding: 30px 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo {
  position: reative;
  color: #000;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: 1px;
}

header > .navigation a {
  /* align-self: center; */
  color: #000;
  /* background-color: #fff; */
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 2px 15px;
  border-radius: 20px;
  transition: 0.8s;
  transition-property: background;
}
header > .navigation a:not(:last-child) {
  /* align-self: center; */
  margin-right: 30px;
}
header .navigation a:hover {
  background: #fff;
}
.content {
  margin: 60px 100px;
  max-width: 650px;
}
.content .info h2 {
  color: #2d3d5c;
  font-size: 52px;
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 2px;
  line-height: 60px;
  margin-bottom: 60px;
}
.content .info h2 span {
  color: white;
  font-size: 50px;
  font-weight: 600;
}
.content div p {
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 40px;
}
.content .info .info-btn {
  color: #fff;
  /* border: 1px solid green; */
  padding: 5px 20px;
  background: #464f8c;
  border-radius: 10px;
  border-style: none;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 2px;
  transition: 0.2s;
  transition-property: background;
}
.content .info .info-btn:hover {
  background: #383a4a;
}
.media-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}
.media-icons a {
  position: relative;
  color: #b6b7cb;
  font-size: 25px;
  transition: 0.3s;
  transition-property: transform;
}
.media-icons a:not(:last-child) {
  margin-right: 45px;
}
.media-icons a:hover {
  transform: scale(1.5);
}

label {
  display: none;
}

#check {
  z-index: 3;
  display: none;
}

@media (max-width: 960px) {
  header .navigation {
    display: none;
  }
  label {
    display: block;
    font-size: 25px;
    cursor: pointer;
    transition: 0.3s;
    transition-property: color;
  }
  label :hover {
    color: #fff;
  }
  label .close-btn {
    display: none;
  }

  #check:checked ~ header .navigation {
    z-index: 1;
    position: fixed;
    background: rgba(89, 119, 153, 0.9);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  #check:checked ~ header .navigation a {
    font-weight: 700;
    margin-right: 0;
    margin-bottom: 50px;
    letter-spacing: 2px;
  }
  #check:checked ~ header label .menu-btn {
    display: none;
  }
  #check:checked ~ header label .close-btn {
    z-index: 1;
    display: block;
    position: fixed;
  }
  label .menu-btn {
    position: absolute;
  }
  header .logo {
    position: absolute;
    /* bottom: -6px; */
  }
  .content .info h2 {
    font-size: 45px;
    line-height: 50px;
  }
  .content .info h2 span {
    font-size: 40px;
    font-weight: 600;
  }
  .content .info p {
    font-size: 14px;
  }
}

@media(max-width: 560px){
  .content .info h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .content .info h2 span {
    font-size: 30px;
    font-weight: 600;
  }
  .content .info p {
    font-size: 14px;
  }
}