@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;700&display=swap");
body {
  width: 100vw;
  margin: 0;
  font-family: 'Poppins','aerial';
}

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

a {
  text-decoration: none;
}

img {
  width: 100%;
}

.nav-container {
  background: #e5def1;
}

.nav-container a {
  color: #110735;
}

.nav-container header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 2em;
}

.nav-container header nav {
  display: none;
}

.nav-container header .logo {
  font-weight: bold;
}

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

.nav-container header ul a {
  display: block;
  padding: 0 1em;
}

.hamburger {
  height: 30px;
  width: 30px;
}

.cross-btn {
  height: 30px;
  width: 30px;
}

.mobile-nav-container {
  display: none;
}

.mobile-nav {
  position: fixed;
  height: 100vh;
  width: 100vw;
  background-color: #f4bcc6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  left: 0;
  z-index: 10;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
}

.mobile-nav nav ul li {
  padding: 2em;
  text-align: center;
}

.hero {
  color: crimson;
  padding: 4em;
  text-align: center;
  display: -ms-grid;
  display: grid;
  height: 100vh;
}

.scroll {
  height: 70px;
  width: 70px;
  margin: auto;
}

section {
  padding: 4em 2em;
  text-align: center;
}

.about-me {
  position: relative;
}

.about-me::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: #f4bcc6;
  top: -50px;
  left: 0;
  z-index: -1;
}

.subtitle {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: bold;
  color: crimson;
  font-size: 2em;
}

.projects {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-right: 0;
  background: black;
}

.projects-container {
  width: 80%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.counters {
  color: white;
  text-align: left;
  padding: 1em 2em;
  counter-reset: counter-name;
}

.counters li {
  position: relative;
  color: white;
  margin: 2em auto;
}

.counters li::before {
  counter-increment: counter-name;
  content: "0" counter(counter-name);
  position: absolute;
  left: -0.6em;
  top: -0.7em;
  font-weight: bolder;
  font-size: 2em;
  z-index: 1;
  color: gray;
  opacity: 0.3;
}

#building {
  display: none;
}

.hobbies-container {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}

.hobbies-card {
  margin-bottom: 20px;
  width: 90%;
  max-width: 250px;
  -webkit-box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
          box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.circle {
  animation: circleanimate 1s infinite alternate-reverse;
}

.dot {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  mix-blend-mode: multiply;
  -webkit-filter: blur(40px);
          filter: blur(40px);
  opacity: 0.6;
}

.dot-1 {
  background-color: #9cedf5;
  top: 90px;
  left: -50px;
}

.dot-2 {
  background-color: #7b63b3;
  top: 30px;
  right: 120px;
}

.dot-3 {
  background-color: #eeea20;
  bottom: 150px;
  right: 50px;
}

.dot-4 {
  background-color: #f94874;
  left: -100px;
  top: 50%;
}

@-webkit-keyframes circleanimate {
  from {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    z-index: 5;
  }
  to {
    -webkit-transform: translate(0px, 30px);
            transform: translate(0px, 30px);
    z-index: 5;
  }
}

@keyframes circleanimate {
  from {
    -webkit-transform: translate(0px, 0px);
            transform: translate(0px, 0px);
    z-index: 5;
  }
  to {
    -webkit-transform: translate(0px, 30px);
            transform: translate(0px, 30px);
    z-index: 5;
  }
}

.andrea {
  display: none;
}

@media only screen and (min-width: 800px) {
  #hamburger-btn {
    display: none;
  }
  .nav-container header nav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .about-me {
    text-align: left;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 50% auto;
        grid-template-columns: 50% auto;
  }
  .about-me::before {
    top: -20px;
    left: -90px;
  }
  .left {
    display: -ms-grid;
    display: grid;
    place-content: center;
  }
  .right {
    margin-left: 2em;
    margin-top: 5em;
    height: 80%;
  }
  .social-header ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 1em 0;
    background-color: white;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
  }
  .hero {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 66% auto;
        grid-template-columns: 66% auto;
    padding: 0;
  }
  .hero .content {
    padding: 6em 8em 6em 4em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .hero .content h1 {
    font-size: 3em;
    line-height: 1.2em;
  }
  .section {
    padding: 4em;
  }
  .andrea {
    display: block;
    height: 300px;
    width: 300px;
  }
}
/*# sourceMappingURL=main.css.map */