* {
   box-sizing: border-box;
}

body {
   margin: 0;
   font-family: 'Red Hat Display', sans-serif;
}

.bruno-ace-sc-regular {
   font-family: "Bruno Ace SC", sans-serif;
   font-weight: 400;
   font-style: normal;
}

ul {
   padding: 0;
}

ul.grid {
   list-style: none;
}

ul.product-features {
   display: flex;
   flex-direction: column;
   justify-content: space-around;
   align-items: flex-start;
   height: 100%;
   text-align: left;
   padding-top: 20px;
   padding-bottom: 20px;
   font-size: 1.25em;
   line-height: 1.75em;
}

.bullet {
   width: 16px;
}

h1, h2, h3, p {
   color: #181d26;
}

h2.landing-content {
   font-family: "Bruno Ace SC", sans-serif;
   font-size: 1.5em;
}

li.service-group {
   display: inline;
}

@counter-style rocket-emoji {
   system: cyclic;
   symbols: "\1F680";
   suffix: " ";
}

li.product-feature {
   margin-bottom: 10px;
   margin-left: 5px;
   margin-right: 15px;
   list-style-type: rocket-emoji;
}

section > div {
   display: flex;
   flex-direction: column;
   align-items: center;
   text-align: center;
   padding: 15px;
   transition: box-shadow 0.3s;
}


section:not(.landing-container):nth-of-type(odd) {
   background-color: #e1e9f7;
}

footer {
   color: #8c8c8c;
   background-color: black;
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   text-align: center;
   padding: 0px 25px;
}

.footer-text {
   color: #8c8c8c;
}

.smooth-scroll:hover {
  cursor: pointer;
}

.landing {
   height: 100vh;
   justify-content: center;
   opacity: 0;
   animation: fadein 0.75s forwards ease-in;
}

.landing-logo {
   max-width: 50%;
   max-height: 60%;
   margin-bottom: 50px;
}

@keyframes fadein {
   100% {
      opacity: 1;
   }
}

.landing-container {
   position: relative;
   height: 130vh;
}

.landing-content {
   margin-top: 5px;
}

.landing-image {
   width: 100%;
   height: 100%;
   top: 0;
   left: 0;
   position: absolute;
   background-image: url("../images/stargazer.jpg");
   background-size: cover;
   background-repeat: no-repeat;
   background-position: center center;
   opacity: 0.6;
   z-index: -1;
}

.about-us {
   display: flex;
   flex-direction: row;
   justify-content: space-around;
   align-items: center;
}

.about-us-image {
   width: 40%;
   margin: 15px;
}

.screenshot {
   width: 40%;
   margin: 15px;
}

.contact-link {
   color: #558fed;
   transition: all 0.3s;
}

.contact-link:hover {
   color: #104396
}

.grid {
   display: flex;
   flex-wrap: wrap;
   width: 100%;
   justify-content: space-around;
}

.about-us-text {
   margin-left: 5vw;
   margin-right: 5vw;
   margin-top: 50px;
   margin-bottom: 50px;
   font-size: 1.25em;
   line-height: 1.75em;
}

.service-group {
   flex-basis: 50%;
   text-align: center;
   padding: 25px;
}

.product-screenshot {
   display: flex;
   flex-direction: column;
   align-items: center;
}

.service-description {
   padding: 0 25px;
}

.contact-text {
   font-size: 1.25em;
   line-height: 1.5em;
}

.footer-link {
   color: #edf2fc;
   text-decoration: none;
   transition: all 0.3s;
}

.footer-link:hover {
   text-shadow: 0px 4px 3px rgba(0,0,0,0.4),
                0px 8px 13px rgba(0,0,0,0.1),
                0px 18px 23px rgba(0,0,0,0.1);
}

/* Media queries for responsive breakpoints */

/* for-phone-only-portrait */
@media (max-width: 599px) {
   footer {
      flex-direction: column;
   }

   h1 {
      font-size: 3em;
   }

   .about-us {
      display: flex;
      flex-direction: column;
      justify-content: space-around;
      align-items: center;
   }

   .about-us-image {
      width: 90%;
      margin: 15px;
   }

   .landing {
      justify-content: flex-start;
      padding-top: 30vh;
   }

   .landing-logo {
      margin-bottom: 45px;
   }

   .landing-logo {
      margin-top: -10px;
      max-width: 60%;
   }

   .grid li {
      flex-basis: 100%;
   }

   .contact-content {
      flex-basis: 100%;
   }
}

/* for-phone-only-landscape */
@media (max-width: 599px)
   and (orientation: landscape) {

   h1 {
      font-size: 2.5em;
   }

   .landing-logo {
      margin-top: -40px;
      margin-bottom: 25px;
   }
}

/* for-tablet-portrait-up */
@media (min-width: 600px) {
   h1 {
      font-size: 3em;
   }
}

 /* for-tablet-portait-only */
@media (min-width: 600px) and (max-width: 899px) {
   .service-group {
      flex-basis: 40%;
   }
}

 /* for-tablet-landscape-up */
@media (min-width: 900px) {
   h1 {
      font-size: 3em;
   }

   .about-us {
      display: flex;
      flex-direction: row;
      justify-content: space-around;
      align-items: center;
   }

   .about-us-image {
      width: 40%;
      margin: 15px;
   }
}

 /* for-tablet-landscape-only */
@media (min-width: 900px) and (max-width: 1199px) {

}

 /* for-desktop-up */
@media (min-width: 1200px) {

}

 /* for-desktop-only */
@media (min-width: 1200px) and (max-width: 1799px) {

}

 /* for-big-desktop-up */
@media (min-width: 1800px) {

}
