body,
html {
  margin: 0;
  scroll-behavior: smooth;
  font-family: 'Open Sans', sans-serif;
}

body {
  color: #000;
  font-size: 18px;
  background: url(../images/bg.png);
  line-height: 2;
}

ul {
  list-style-position: inside;
  padding: 0;
}

a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
}

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

.flex-wrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.vcenter {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.hcenter {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.space-between {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.col {
  max-width: 50%;
}

.text-center {
  text-align: center;
}

section {
  padding: 60px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.container {
  max-width: 1180px;
  padding: 0 20px;
  margin: auto;
  min-width: 300px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

h2 {
  font-size: 20px;
  margin-bottom: 20px;
}

hr {
  width: 80px;
  border: 2px solid #000;
  margin-bottom: 90px;
}

nav {
  border-bottom: 2px solid #000;
  font-size: 16px;
  padding: 128px 0 10px;
  position: relative;
  margin-bottom: 80px;
}

nav h1 {
  font-size: 16px;
  margin: 0;
}

nav .circle {
  width: 200px;
  height: 200px;
  background: #000;
  border-radius: 50%;
  color: #fff;
  font-size: 130px;
  font-weight: 700;
  text-align: center;
  line-height: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  left: calc(50% - 100px);
  top: 14px;
  border: 6px solid #fff;
  overflow: hidden;
}

nav .circle span:first-of-type {
  text-shadow: 3px 0px 10px #000;
  position: relative;
  z-index: 1;
}

nav .circle span:nth-of-type(2) {
  -webkit-transform: skew(-9deg, -18deg) rotate(16deg);
          transform: skew(-9deg, -18deg) rotate(16deg);
  margin-left: -22px;
  font-size: 90%;
  margin-top: 1px;
}

.contact ul {
  list-style: none;
  padding-left: 0;
}

.contact ul li {
  margin-bottom: 10px;
}

.contact ul li i {
  width: 40px;
}

footer {
  border-top: 2px solid #000;
  text-align: center;
  margin-top: 10vh;
  font-size: 12px;
}

@media (max-width: 1024px) {
  nav .circle {
    width: 150px;
    height: 150px;
    font-size: 102px;
    line-height: 150px;
    left: calc(50% - 75px);
  }
  nav {
    padding: 180px 0 10px;
    margin-bottom: 40px;
  }
  nav .logo {
    margin: auto;
  }
  .about {
    width: 100%;
    max-width: 100%;
  }
  .contact, .skill {
    width: 50%;
    min-width: 270px;
  }
}
/*# sourceMappingURL=styles.css.map */