@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;800&display=swap");
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  margin: 0;
  background: #2B192F;
  color: white;
  font-family: 'Montserrat';
}

a {
  color: white;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero-wrapper {
  background-color: #097144;
}

.wrapper {
  padding: 1.5em;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header .logo {
  font-weight: bold;
}

header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

header ul li a {
  padding: 0 .6em;
}

.hero-content {
  margin: 4em 0 2em;
}

.hero-content .subtitle {
  margin-bottom: 0;
}

.light-purple-wrapper {
  background: #351F3A;
}

.stats {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: (minmax(130px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  -ms-flex-pack: distribute;
      justify-content: space-around;
  margin-top: 2em;
}

.stats li {
  margin-bottom: 1.5em;
}

.stats strong {
  font-size: 1.4em;
}

.stats span {
  display: block;
  text-transform: uppercase;
  font-size: .75em;
}

h2 {
  text-align: center;
  position: relative;
}

h2::before {
  content: '';
  position: absolute;
  height: 5px;
  width: 30px;
  background: #097144;
  top: -.3em;
}

.skills {
  text-align: center;
}

.skills li {
  margin: 2em 0;
  width: 100px;
}

@media (min-width: 360px) {
  .purple-content {
    margin: 2em 0 2em;
  }
  .purple-content .subtitle {
    margin-bottom: 0;
  }
  .skills {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: (auto)[2];
        grid-template-columns: repeat(2, auto);
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
  .move-up {
    margin-top: -3.5em;
  }
}

@media (min-width: 650px) {
  body {
    font-size: 18px;
  }
  .wrapper {
    padding: 1.5em 4em;
  }
  .skills {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

@media (min-width: 853px) {
  body {
    font-size: 20px;
  }
  .stats {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 0;
  }
  .skills {
    -ms-grid-columns: (auto)[4];
        grid-template-columns: repeat(4, auto);
  }
  h1 {
    font-size: 2.5em;
  }
  .subtitle {
    font-size: 1.2em;
  }
  h2 {
    text-align: left;
    font-size: 2em;
  }
  .v-padding {
    padding: 4em;
  }
  .light-purple-wrapper {
    padding-bottom: 4em;
  }
  .move-up {
    margin-top: -7em;
  }
}

@media (min-width: 1200px) {
  .stats li {
    border-right: 1px solid #7c5994;
    padding-right: 5%;
  }
  .stats li:last-child {
    border: 0;
  }
}
/*# sourceMappingURL=main.css.map */