:root {
  --primary-color: #f68449;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "IBM Plex Sans Condensed", sans-serif;
}

html {
  font-size: 20px;
}

body {
  background-color: black;
  color: white;
  min-height: 100vh;
}

.flex-v {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.flex-h {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.title {
  font-weight: 200;
  font-size: 1.4rem;
}

.title span {
  color: var(--primary-color);
  font-weight: 600;
}

nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.8rem 6rem;
}

nav #nav-btn {
  display: none;
}

nav #logo {
  font-size: 1.2rem;
}

nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
}

nav ul li {
  margin: 0 1rem;
}

a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}

a:visited {
  color: var(--primary-color);
}

a:hover {
  text-decoration: underline;
}

hr {
  margin: auto;
  width: 90%;
  border: none;
  border-top: 1px solid #777;
  opacity: 0.8;
  width: 90%;
  margin: auto;
}

/* The container must be positioned relative: */
.custom-select {
  position: relative;
  font-family: Arial;
}

.custom-select select {
  display: none;
  /*hide original SELECT element: */
}

.select-selected {
  background-color: var(--primary-color);
}

/* Style the arrow inside the select element: */
.select-selected:after {
  position: absolute;
  content: "";
  top: 14px;
  right: 10px;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
  border-color: transparent transparent #fff transparent;
  top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div, .select-selected {
  color: #ffffff;
  padding: 2px 16px;
  border: 1px solid transparent;
  border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
  cursor: pointer;
}

/* Style items (options): */
.select-items {
  position: absolute;
  background-color: var(--primary-color);
  top: 100%;
  left: 0;
  right: 0;
  z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
  display: none;
}

.select-items div:hover, .same-as-selected {
  background-color: rgba(0, 0, 0, 0.1);
}

.navline {
  border-top: 1px solid var(--primary-color);
}

.list-grp {
  width: 60%;
  padding-bottom: 2rem;
  margin: auto;
}

.list-item h4 {
  margin-top: 2rem;
  color: var(--primary-color);
}

.list-item p {
  margin-top: 1rem;
}

.list-item ul {
  margin-left: 1rem;
}

.list-item li {
  margin: .5rem 0;
}

#hero-image {
  background-image: url("./assets/earth.png");
  background-position: 80% 0%;
  background-repeat: no-repeat;
  background-size: 48rem;
}

#hero {
  width: 80%;
  margin: auto;
  padding: 6rem 0;
}

#hero div:nth-child(1) {
  margin-bottom: 2.5rem;
}

#hero div:nth-child(1) h1 {
  font-size: 2.2rem;
  color: var(--primary-color);
}

#hero div:nth-child(1) h3 {
  font-size: 1.4rem;
  font-weight: lighter;
  margin-bottom: 0.8rem;
}

#hero div:nth-child(2) {
  margin: 0 -2rem;
  margin-top: 3rem;
}

#hero div:nth-child(2) > div {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin: 0 2rem;
}

#info {
  width: 80%;
  margin: 2rem auto;
}

#info h2 {
  font-weight: 400;
}

#info p {
  margin-top: 1rem;
  font-size: .9rem;
}

#info .highlight {
  color: var(--primary-color);
  text-align: center;
}

#info button {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}

#projects {
  width: 80%;
  margin: auto;
  margin-bottom: 2rem;
}

#projects h2 {
  margin-top: 1.2rem;
  color: var(--primary-color);
  font-size: 1rem;
}

#projects p {
  margin-top: 0.2rem;
}

#projects div {
  margin-left: 1.4rem;
}

footer {
  text-align: center;
  font-size: .75rem;
  border-top: 1px solid #555;
  padding: 1rem 0;
  color: #999;
}

#more-projects {
  color: var(--primary-color);
  padding-top: 2rem;
  text-align: center;
  margin-bottom: 1.4rem;
}

#resources {
  margin: auto;
  margin-top: 2.4rem;
}

#resources h1 {
  width: 80%;
  margin: auto;
}

#resources h3 {
  margin: 1rem 0 2rem;
  text-align: center;
}

#resources h5 {
  width: 80%;
  margin: auto;
  text-align: center;
  margin-bottom: 2rem;
}

button {
  cursor: pointer;
  margin-top: 1.2rem;
  padding: 0.5rem 0;
  width: 8.5rem;
  background-color: var(--primary-color);
  border: none;
  border-radius: 0;
  font-size: 0.74rem;
  color: white;
  font-weight: 600;
}

@media only screen and (max-width: 600px) {
  nav {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 0;
  }
  nav #nav-btn {
    display: block;
    position: absolute;
    right: .7rem;
  }
  nav .nav-links {
    display: none;
  }
  nav ul {
    background-color: #222;
    width: 100%;
    position: absolute;
    text-align: center;
    top: 3.65rem;
    z-index: 1;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  nav ul li {
    padding: .4rem 0;
    margin: 0.4rem auto;
  }
  hr {
    width: 100%;
  }
  #hero-image {
    background-position: 4% 0%;
  }
  .flex-h {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #hero {
    padding: 5rem 0;
  }
  #hero .line {
    content: "";
    position: relative;
    bottom: 0.4rem;
    border-top: 2px solid var(--primary-color);
    display: block;
  }
  #hero .line::after {
    content: " ";
    display: block;
    width: 10px;
    height: 10px;
    background-color: white;
    position: absolute;
    right: -2px;
    bottom: -4px;
    border-radius: 50%;
  }
  #hero div:nth-child(1) h1 {
    font-size: 3rem;
  }
  #hero div:nth-child(1) h3 {
    font-size: 1.6rem;
    width: 80%;
    padding-bottom: 2.3rem;
  }
  #hero div:nth-child(1) button {
    font-size: 1rem;
    width: 11.2rem;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  #hero div:nth-child(2) div {
    margin-top: 3rem;
  }
  #hero div:nth-child(2) div:nth-child(1) span {
    width: 75%;
  }
  #hero div:nth-child(2) div:nth-child(2) span {
    width: 60%;
  }
  #hero div:nth-child(2) div:nth-child(3) span {
    width: 90%;
  }
  #projects div {
    margin-left: 0;
  }
  #projects button {
    margin-top: 3rem;
    font-size: 1rem;
    width: 11.2rem;
    -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
  }
  #resources h1 {
    text-align: center;
  }
  #resources .list-grp {
    width: 85%;
  }
}
/*# sourceMappingURL=main.css.map */