@import url("https://fonts.googleapis.com/css2?family=Source+Code+Pro:ital,wght@0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap");
/*
Josh's Custom CSS Reset
https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/* 
color palette map (contains key:value pairs in parentheses)
a map has certain methods such as map-has, map-get, and map-remove
which allow you to mainpulate the contents
*/
.header {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  background-color: black;
  color: white;
  max-width: 100vw;
  overflow-x: hidden;
}
.header .logo-container {
  display: flex;
  align-items: center;
  padding: 0.5rem;
  width: 350px;
}
.header .logo-container * {
  display: block;
}
.header .logo-container > span {
  text-transform: uppercase;
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .header .logo-container > span {
    font-size: 0.75rem;
  }
}
.header .mobile-menu-btn {
  display: none;
  padding: 5px;
  background-image: url("../../images/bars-solid.svg");
  background-repeat: no-repeat;
  background-position: center;
}
.header .mobile-menu-btn:hover {
  background-color: rgb(213, 250, 192);
}
@media screen and (max-width: 480px) {
  .header .mobile-menu-btn {
    display: block;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 100;
    background-color: rgb(116, 236, 116);
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 2px;
    transition: 200ms all;
  }
}
.header .mobile-menu-btn.close-menu {
  background-image: url("../../images/xmark-solid.svg");
}

.navbar {
  margin-left: auto;
  padding: 0.75rem 1.5rem;
  background-color: black;
}
@media screen and (max-width: 480px) {
  .navbar {
    margin-left: 0;
  }
}
.navbar .navbar-menu {
  list-style-type: none;
  display: flex;
  gap: 2rem;
  background-color: black;
}
@media screen and (max-width: 480px) {
  .navbar .navbar-menu {
    z-index: 99;
    position: fixed;
    inset: 0 0 0 0;
    padding-left: 30%;
    transform: translateX(100%);
    flex-direction: column;
    justify-content: flex-start;
    transition: all 200ms;
  }
}
.navbar .navbar-menu a {
  text-decoration: none;
  display: block;
  color: rgb(116, 236, 116);
  font-size: 1rem;
  border-bottom: 2px solid transparent;
  transition: 200ms all;
}
.navbar .navbar-menu a:hover {
  color: white;
  border-color: white;
}
@media screen and (min-width: 1025px) {
  .navbar .navbar-menu a {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .navbar .navbar-menu a {
    margin-top: 2rem;
    width: 120px;
  }
}
.navbar .navbar-menu .current-page {
  color: gray;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .navbar .navbar-menu.menu-expanded {
    transform: translateX(0);
  }
}

.feature, .feature-reverse {
  padding: 1rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 769px) {
  .feature, .feature-reverse {
    flex-direction: row;
  }
}
.feature .feature-img, .feature-reverse .feature-img {
  display: block;
  width: 400px;
  height: 400px;
  padding: 0.5rem;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0.8;
}
@media (min-width: 1025px) {
  .feature .feature-img, .feature-reverse .feature-img {
    width: 500px;
    height: 500px;
  }
}
.feature .feature-text, .feature-reverse .feature-text {
  background-color: black;
  color: white;
  padding: 1rem;
}
.feature .feature-text h1, .feature-reverse .feature-text h1 {
  font-size: 1.5rem;
}
@media (min-width: 1025px) {
  .feature .feature-text h1, .feature-reverse .feature-text h1 {
    font-size: 2rem;
  }
}
.feature .feature-text p, .feature-reverse .feature-text p {
  margin-top: 2rem;
  font-size: 1rem;
}
@media (min-width: 1025px) {
  .feature .feature-text p, .feature-reverse .feature-text p {
    font-size: 1.5rem;
  }
}

@media (min-width: 769px) {
  .feature-reverse {
    flex-direction: row-reverse;
  }
}

.card {
  font-family: "Roboto", sans-serif;
  background-color: rgb(5, 25, 5);
  color: white;
  border: 2px solid rgb(200, 200, 200);
  border-radius: 15px;
  padding: 1rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  max-width: 325px;
}
@media (min-width: 1201px) {
  .card {
    max-width: 380px;
  }
}
.card img {
  width: 60px;
  height: 60px;
  padding: 10px;
  display: block;
  margin-bottom: 10px;
}
.card .card-header {
  font-size: 1.5rem;
  padding: 1rem;
}
@media (min-width: 1201px) {
  .card .card-header {
    font-size: 2rem;
  }
}
.card .card-text {
  border-top: 1px solid rgb(172, 172, 172);
  font-size: 1rem;
  line-height: 1.5;
  padding: 1.5rem;
  color: rgb(200, 200, 200);
}
@media (min-width: 1201px) {
  .card .card-text {
    font-size: 1.125rem;
  }
}

html {
  scroll-behavior: smooth;
}

html, body {
  font-family: "Source Code Pro", monospace;
}

body {
  width: 100vw;
  overflow-x: hidden;
  background-color: black;
}

.logo-icon {
  width: 30px;
  padding: 5px;
}

.content {
  background-color: black;
  margin: 0;
  padding: 0;
}

section {
  margin: 0 auto;
  padding: 6rem 0;
  background-color: black;
  max-width: 1200px;
}

.hero {
  background-size: cover;
  background-position: center;
  padding: 2rem 0;
  font-family: "Roboto", sans-serif;
}
.hero .hero-text-container {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero .hero-text-container h1 {
  font-size: 2rem;
  color: rgb(116, 236, 116);
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 2px black;
  font-size: 1.5rem;
}
@media (min-width: 769px) {
  .hero .hero-text-container h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1201px) {
  .hero .hero-text-container h1 {
    font-size: 3rem;
  }
}
.hero .hero-text-container p {
  padding: 0.5rem 0 1.5rem;
  text-shadow: 2px 2px 2px black;
  letter-spacing: 0.125ch;
  text-align: center;
  font-size: 1rem;
}
@media (min-width: 769px) {
  .hero .hero-text-container p {
    font-size: 1.5rem;
  }
}
@media (min-width: 1201px) {
  .hero .hero-text-container p {
    font-size: 2rem;
  }
}
.hero .hero-text-container a {
  text-decoration: none;
  color: white;
  text-shadow: 2px 2px 3px black;
  letter-spacing: 0.125ch;
  background-color: rgb(14, 134, 14);
  border: 1px solid rgb(1, 107, 1);
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgb(185, 171, 43);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 200ms;
  font-size: 1rem;
}
@media (min-width: 769px) {
  .hero .hero-text-container a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1201px) {
  .hero .hero-text-container a {
    font-size: 2rem;
  }
}
.hero .hero-text-container a:hover {
  color: rgb(241, 240, 240);
  background-color: rgb(161, 141, 48);
  border: 1px solid rgb(173, 173, 173);
  box-shadow: 0px 0px 20px rgb(247, 241, 187);
}

.hero-main {
  background-image: url("../images/nasa-unsplash.jpg");
}

.hero-services {
  background-image: url("../images/nasa2-unsplash.jpg");
}
.hero-services .hero-text-container {
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  border-radius: 9999px;
}
.hero-services .hero-text-container h1 {
  letter-spacing: 0.25ch;
  font-weight: bold;
}
.hero-services .hero-text-container p {
  font-weight: bold;
}

.hero-pricing {
  background-image: url("../images/austin-poon-unsplash.jpg");
}
.hero-pricing .hero-text-container {
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  border-radius: 9999px;
}

#contact {
  padding-left: 1rem;
  padding-right: 1rem;
}

.contact-container {
  color: white;
  background-color: black;
  margin: 0 auto;
  padding: 1.5rem;
  max-width: 700px;
  text-align: center;
  border: 6px solid rgb(0, 34, 0);
  border-radius: 30px;
  outline: 6px solid rgb(0, 68, 0);
  outline-offset: 10px;
}
.contact-container h1 {
  font-size: 1.5rem;
  color: rgb(116, 236, 116);
}
@media (min-width: 769px) {
  .contact-container h1 {
    font-size: 2.5rem;
  }
}
@media (min-width: 1201px) {
  .contact-container h1 {
    font-size: 3rem;
  }
}
.contact-container h2 {
  font-size: 2rem;
}
@media (min-width: 769px) {
  .contact-container h2 {
    font-size: 3.75rem;
  }
}
@media (min-width: 1201px) {
  .contact-container h2 {
    font-size: 4rem;
  }
}
.contact-container p {
  font-size: 1rem;
  padding: 2rem;
}
@media (min-width: 769px) {
  .contact-container p {
    font-size: 1.25rem;
  }
}
@media (min-width: 1201px) {
  .contact-container p {
    font-size: 1.5rem;
  }
}
.contact-container .contact-links {
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  justify-content: space-between;
  align-items: center;
  flex-direction: column;
}
@media (min-width: 769px) {
  .contact-container .contact-links {
    flex-direction: row;
  }
}
.contact-container .contact-links a {
  color: white;
  background-color: green;
  text-shadow: 2px 2px 1px black;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  border-radius: 10px;
  padding: 0.5rem 1rem;
  transition: all 100ms;
  width: 200px;
}
.contact-container .contact-links a:hover {
  outline: 4px solid green;
  outline-offset: 4px;
}
.contact-container .contact-links a .icon {
  display: block;
  width: 30px;
  height: 30px;
  padding: 5px;
}

.services-content {
  display: flex;
  gap: 2rem;
  flex-direction: column;
  margin: 0 auto;
}
@media (min-width: 1025px) {
  .services-content {
    flex-direction: row;
  }
}

.services-pricing {
  max-width: 500px;
  margin: 0 auto;
  padding: 2rem;
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.services-pricing h2 {
  font-size: 1.5rem;
  color: rgb(116, 236, 116);
  margin: 0;
  padding: 0;
  text-shadow: 2px 2px 2px black;
  font-size: 1.5rem;
}
@media (min-width: 769px) {
  .services-pricing h2 {
    font-size: 2rem;
  }
}
@media (min-width: 1201px) {
  .services-pricing h2 {
    font-size: 2rem;
  }
}
.services-pricing p {
  padding: 1.5rem;
  margin: 2rem auto;
  text-shadow: 2px 2px 2px black;
  letter-spacing: 0.125ch;
  text-align: center;
  font-size: 1rem;
}
@media (min-width: 769px) {
  .services-pricing p {
    font-size: 1.125rem;
  }
}
@media (min-width: 1201px) {
  .services-pricing p {
    font-size: 1.5rem;
  }
}
.services-pricing a {
  text-decoration: none;
  color: white;
  text-shadow: 2px 2px 3px #000000;
  letter-spacing: 0.125ch;
  background-color: rgb(14, 134, 14);
  border: 1px solid rgb(1, 107, 1);
  border-radius: 10px;
  box-shadow: 0px 0px 20px rgb(185, 171, 43);
  padding: 0.25rem 0.5rem;
  cursor: pointer;
  transition: all 200ms;
  font-size: 1rem;
}
@media (min-width: 769px) {
  .services-pricing a {
    font-size: 1.5rem;
  }
}
@media (min-width: 1201px) {
  .services-pricing a {
    font-size: 2rem;
  }
}
.services-pricing a:hover {
  color: rgb(241, 240, 240);
  background-color: rgb(161, 141, 48);
  border: 1px solid rgb(173, 173, 173);
  box-shadow: 0px 0px 20px rgb(247, 241, 187);
}

footer {
  background-color: black;
  color: rgb(116, 236, 116);
  text-align: center;
  letter-spacing: 0.125ch;
  padding: 1.5rem;
  margin: 0 auto;
  font-size: 1rem;
  font-family: "Roboto", sans-serif;
}/*# sourceMappingURL=index.css.map */