/* Box sizing, margin, padding rules */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Font sizing base 10 */
html {
  /* 10px */
  font-size: 62.5%;
}

body {
  /* 16px */
  font-size: 1.6rem;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html,
body {
  min-width: 100%;
}

body {
  height: 100vh;
  font-family: "League Spartan", sans-serif;
  color: white;
  background-color: #070724;
  background-image: url(/assets/background-stars.svg);
  background-position: top left;
  background-repeat: repeat;
  background-size: auto;
  position: absolute;
  z-index: -999;
  -webkit-animation: background_trans 45s infinite;
          animation: background_trans 45s infinite;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  animation-direction: alternate-reverse;
}
body a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.6);
}
body li {
  list-style: none;
}

nav {
  width: 100%;
}

#navigation {
  text-transform: uppercase;
  height: auto;
  position: relative;
}
#navigation .nav-container {
  display: flex;
  height: auto;
  max-width: 575px;
  margin: 0 auto;
  padding: 20px;
  justify-content: space-between;
  align-items: center;
  background-color: #070724;
}
#navigation .nav-container .logo {
  font-family: "Antonio", sans-serif;
  font-size: 2.8rem;
  font-weight: 500;
}
#navigation .nav-container .icon-hamburger {
  width: 24px;
  height: auto;
  cursor: pointer;
}
#navigation .nav-menu {
  display: none;
  padding: 0 25px;
  margin: 0 auto;
  width: 100%;
  height: auto;
  background-color: #070724;
  transform: translateY(-120%);
}
#navigation .nav-menu .nav-item {
  text-transform: uppercase;
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  letter-spacing: 2.6px;
  line-height: 25px;
  font-size: 2.1rem;
  max-width: 575px;
  height: auto;
  padding: 25px 0;
  margin: 10px auto;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}
#navigation .nav-menu .nav-item:nth-of-type(1) .bullet {
  background-color: #def4fc;
}
#navigation .nav-menu .nav-item:nth-of-type(2) .bullet {
  background-color: #f7cc7f;
}
#navigation .nav-menu .nav-item:nth-of-type(3) .bullet {
  background-color: #545bfe;
}
#navigation .nav-menu .nav-item:nth-of-type(4) .bullet {
  background-color: #ff6a45;
}
#navigation .nav-menu .nav-item:nth-of-type(5) .bullet {
  background-color: #ecad7a;
}
#navigation .nav-menu .nav-item:nth-of-type(6) .bullet {
  background-color: #fccb6b;
}
#navigation .nav-menu .nav-item:nth-of-type(7) .bullet {
  background-color: #65f0d5;
}
#navigation .nav-menu .nav-item:nth-of-type(8) {
  border-bottom: none;
}
#navigation .nav-menu .nav-item:nth-of-type(8):nth-of-type(8) .bullet {
  background-color: #497efa;
}
#navigation .nav-menu .item-container {
  display: flex;
  gap: 15px;
}
#navigation .nav-menu .bullet {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: white;
}
#navigation .nav-menu .chevron {
  width: 8px;
  height: 10px;
  align-self: center;
  margin-left: auto;
}

.show-menu {
  display: block !important;
  transform: translateY(0) !important;
  height: auto;
}

#main-content {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 0.5fr 4fr -webkit-fit-content 1.5fr;
  grid-template-rows: 0.5fr 4fr fit-content 1.5fr;
  gap: 20px;
  justify-items: center;
  align-items: center;
  text-align: center;
  width: 100%;
  margin-bottom: 5vh;
}
#main-content .btn-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
#main-content .btn-container .btn {
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  padding: 15px 0;
  margin: 0 20px;
  font-family: "League Spartan", sans-serif;
  font-weight: 700;
  letter-spacing: 2.6px;
  line-height: 25px;
  font-size: 0.75em;
  font-weight: 300;
  cursor: pointer;
}
#main-content .btn-container .btn:hover, #main-content .btn-container .btn:focus {
  color: #fff;
}
#main-content .btn-container .btn-structure span {
  display: none;
}
#main-content .img-span {
  width: 50%;
  max-width: 310px;
  height: auto;
  padding: 10% 0;
  position: relative;
  z-index: -1;
}
#main-content .img-span .hero-img {
  margin: 0 auto;
  height: 100%;
  width: 100%;
}
#main-content .img-span .img-surface {
  position: absolute;
  width: 50%;
  max-width: 55%;
  height: auto;
  top: 50%;
  right: 0;
  left: 60%;
  bottom: 0;
  transform: rotate(-35deg);
}
#main-content .hero-main {
  font-family: "Antonio", sans-serif;
  font-weight: 500;
  line-height: 52px;
  font-size: 40px;
  text-transform: uppercase;
}
#main-content .hero-desc {
  font-size: 1.5rem;
  font-family: "League Spartan", sans-serif;
  font-weight: 100;
  line-height: 22px;
  width: 87%;
  max-width: 575px;
}
#main-content .source {
  color: rgba(255, 255, 255, 0.5);
  font-family: "League Spartan", sans-serif;
  font-weight: 100;
  line-height: 22px;
  margin-top: 15px;
}
#main-content .source span {
  font-weight: 500;
  text-decoration: underline;
}
#main-content .source .img-source {
  display: inline-block;
  margin-left: 5px;
}

#footer {
  margin: 0 auto 5vh;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  max-width: 575px;
}
#footer .planet-info-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 10px 25px;
  padding: 10px 15px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.25rem;
  font-family: "League Spartan", sans-serif;
  font-weight: 100;
  line-height: 22px;
  font-weight: 500;
}
#footer .planet-info-container .planet-data {
  font-size: 2rem;
  font-family: "Antonio", sans-serif;
  color: #fff;
}

.btn-color-mercury {
  color: #fff !important;
  border-bottom: 3px solid #419ebb !important;
}
@media only screen and (min-width: 768px) {
  .btn-color-mercury {
    background-color: #419ebb !important;
  }
}

.btn-color-venus {
  color: #fff !important;
  border-bottom: 3px solid #eda249 !important;
}
@media only screen and (min-width: 768px) {
  .btn-color-venus {
    background-color: #eda249 !important;
  }
}

.btn-color-earth {
  color: #fff !important;
  border-bottom: 3px solid #6f2ed6 !important;
}
@media only screen and (min-width: 768px) {
  .btn-color-earth {
    background-color: #6f2ed6 !important;
  }
}

.btn-color-mars {
  color: #fff !important;
  border-bottom: 3px solid #d14c32 !important;
}
@media only screen and (min-width: 768px) {
  .btn-color-mars {
    background-color: #d14c32 !important;
  }
}

.btn-color-jupiter {
  color: #fff !important;
  border-bottom: 3px solid #d83a34 !important;
}
@media only screen and (min-width: 768px) {
  .btn-color-jupiter {
    background-color: #d83a34 !important;
  }
}

.btn-color-saturn {
  color: #fff !important;
  border-bottom: 3px solid #cd5120 !important;
}
@media only screen and (min-width: 768px) {
  .btn-color-saturn {
    background-color: #cd5120 !important;
  }
}

.btn-color-uranus {
  color: #fff !important;
  border-bottom: 3px solid #1ec2a4 !important;
}
@media only screen and (min-width: 768px) {
  .btn-color-uranus {
    background-color: #1ec2a4 !important;
  }
}

.btn-color-neptune {
  color: #fff !important;
  border-bottom: 3px solid #2d68f0 !important;
}
@media only screen and (min-width: 768px) {
  .btn-color-neptune {
    background-color: #2d68f0 !important;
  }
}

.nav-item-mercury {
  border-top: 3px solid #419ebb !important;
}
@media only screen and (max-width: 1440px) {
  .nav-item-mercury {
    border-top: none !important;
  }
}

.nav-item-venus {
  border-top: 3px solid #eda249 !important;
}
@media only screen and (max-width: 1440px) {
  .nav-item-venus {
    border-top: none !important;
  }
}

.nav-item-earth {
  border-top: 3px solid #6f2ed6 !important;
}
@media only screen and (max-width: 1440px) {
  .nav-item-earth {
    border-top: none !important;
  }
}

.nav-item-mars {
  border-top: 3px solid #d14c32 !important;
}
@media only screen and (max-width: 1440px) {
  .nav-item-mars {
    border-top: none !important;
  }
}

.nav-item-jupiter {
  border-top: 3px solid #d83a34 !important;
}
@media only screen and (max-width: 1440px) {
  .nav-item-jupiter {
    border-top: none !important;
  }
}

.nav-item-saturn {
  border-top: 3px solid #cd5120 !important;
}
@media only screen and (max-width: 1440px) {
  .nav-item-saturn {
    border-top: none !important;
  }
}

.nav-item-uranus {
  border-top: 3px solid #1ec2a4 !important;
}
@media only screen and (max-width: 1440px) {
  .nav-item-uranus {
    border-top: none !important;
  }
}

.nav-item-neptune {
  border-top: 3px solid #2d68f0 !important;
}
@media only screen and (max-width: 1440px) {
  .nav-item-neptune {
    border-top: none !important;
  }
}

@-webkit-keyframes background_trans {
  0% {
    background-position: 0 0;
  }
  10% {
    background-position: 0 5%;
  }
  90% {
    background-position: 0 95%;
  }
  100% {
    background-position: 0 100%;
  }
}

@keyframes background_trans {
  0% {
    background-position: 0 0;
  }
  10% {
    background-position: 0 5%;
  }
  90% {
    background-position: 0 95%;
  }
  100% {
    background-position: 0 100%;
  }
}
@media only screen and (min-width: 768px) {
  body {
    background-position: center;
    height: auto;
  }
  .show-menu {
    display: none;
  }
  #navigation .nav-container {
    justify-content: center;
    align-items: center;
    border-bottom: none;
    padding-top: 0;
  }
  #navigation .nav-container .logo {
    padding-top: 15px;
  }
  #navigation .nav-container .icon-hamburger {
    display: none;
  }
  #navigation .nav-menu {
    display: flex;
    height: auto;
    width: 100%;
    padding: 0 50px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transform: translate(0);
  }
  #navigation .nav-menu .nav-item {
    font-size: 1.1rem;
    font-weight: 300;
    border-bottom: none;
    padding: 15px 0;
    height: auto;
  }
  #navigation .nav-menu .nav-item a:hover {
    color: white;
  }
  #navigation .nav-menu .nav-item .bullet {
    display: none;
  }
  #navigation .nav-menu .chevron {
    display: none;
  }
  #main-content {
    height: auto;
    margin: 5vh auto 7vh;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 9fr 1fr auto 0.75fr;
    -moz-column-gap: 10%;
         column-gap: 10%;
    row-gap: 25px;
    text-align: left;
    width: 90%;
  }
  #main-content .hero-main,
#main-content .hero-desc,
#main-content .source {
    justify-self: start;
  }
  #main-content .btn-container {
    grid-column: 2/3;
    grid-row: 2/5;
    flex-direction: column;
    gap: 15px;
    border-bottom: none;
    border-top: none;
    margin-left: auto;
    counter-reset: counter;
  }
  #main-content .btn-container .btn-structure span {
    display: inline;
  }
  #main-content .btn-container .btn {
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 30rem;
    margin: 0;
    padding: 10px;
    color: #fff;
    text-align: start;
    transition: background-color 0.5s ease-out;
    width: 100%;
  }
  #main-content .btn-container .btn:hover {
    background-color: rgba(216, 216, 216, 0.2);
  }
  #main-content .btn-container .btn::before {
    content: "0" counter(counter);
    counter-increment: counter;
    color: rgba(255, 255, 255, 0.5);
    margin-right: 25px;
    padding-left: 10px;
  }
  #main-content .btn-container .btn-surface::after {
    content: " Geology";
  }
  #main-content .img-span {
    grid-column: 1/3;
    grid-row: 1/2;
    width: 50%;
    max-width: 425px;
  }
  #main-content .img-span .img-surface {
    position: absolute;
    width: 50%;
    height: auto;
  }
  #main-content .hero-main {
    grid-column: 1/2;
    grid-row: 2/3;
    font-size: 4.8rem;
    align-self: start;
  }
  #main-content .hero-desc {
    grid-row: 3/4;
    width: 100%;
    max-width: 500px;
    margin-right: auto;
    font-size: 1.6rem;
  }
  #main-content .source {
    grid-row: 4/5;
    margin-top: 0;
    align-self: end;
  }
  #footer {
    flex-direction: row;
    width: 90%;
    height: auto;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    margin: 0 auto 10vh;
    max-width: none;
  }
  #footer .planet-info-container {
    width: 25%;
    height: 8.8rem;
    flex-direction: column;
    justify-content: space-around;
    align-items: start;
    margin: 0 5px;
    padding: 15px;
  }
  #footer .planet-info-container:nth-child(1) {
    margin-left: 0;
  }
  #footer .planet-info-container:nth-child(4) {
    margin-right: 0;
  }
  #footer .planet-info-container .planet-data {
    font-size: 2.4rem;
  }
}
@media only screen and (min-width: 1440px) {
  body {
    background-position: right;
    height: auto;
  }
  #navigation {
    display: grid;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 5vh;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }
  #navigation .nav-container {
    width: auto;
    max-width: 100%;
    grid-column: 1/2;
    justify-content: start;
    align-items: center;
    padding: 5px;
    margin-left: 25px;
  }
  #navigation .nav-container .logo {
    padding: 0;
  }
  #navigation .nav-menu {
    grid-column: 2/3;
    justify-content: space-between;
    border-bottom: none;
    padding: 0 25px;
    margin-right: 25px;
  }
  #navigation .nav-menu .nav-item {
    margin: 0;
    padding: 25px 0;
    border-top: 3px solid transparent;
  }
  #navigation .nav-menu .nav-item:nth-of-type(8) {
    border-top: 3px solid transparent;
  }
  #main-content {
    grid-template-columns: 1.75fr 1fr;
    grid-template-rows: 1fr -webkit-min-content auto 1fr;
    grid-template-rows: 1fr min-content auto 1fr;
    row-gap: 25px;
    -moz-column-gap: 10%;
         column-gap: 10%;
    width: 80%;
    margin-left: auto;
    margin-bottom: 10vh;
  }
  #main-content .btn-container {
    grid-column: 2/3;
    grid-row: 4/5;
    align-items: start;
  }
  #main-content .btn-container .btn {
    width: 100%;
  }
  #main-content .img-span {
    grid-column: 1/2;
    grid-row: 1/5;
    width: 55%;
    max-width: 600px;
  }
  #main-content .img-span .img-surface {
    position: absolute;
    width: 55%;
    height: auto;
  }
  #main-content .hero-main {
    grid-column: 2/3;
    grid-row: 1/2;
    align-self: end;
    font-size: 80px;
    line-height: normal;
  }
  #main-content .hero-desc {
    grid-column: 2/3;
    grid-row: 2/3;
    min-width: 75%;
    max-width: 350px;
    font-size: 1.9rem;
  }
  #main-content .source {
    grid-column: 2/3;
    grid-row: 3/4;
    align-self: center;
  }
  #footer {
    width: 80%;
    margin-bottom: 10vh;
  }
  #footer .planet-info-container {
    width: 22%;
    height: 12.8rem;
    justify-content: center;
    gap: 15px;
    padding-top: 0;
    padding-bottom: 0;
  }
  #footer .planet-info-container .planet-info {
    font-size: 1.3rem;
  }
  #footer .planet-info-container .planet-data {
    font-size: 40px;
  }
}/*# sourceMappingURL=main.css.map */