body {
  background-color: var(--color-background);
  color: var(--color-text);
  letter-spacing: 1px;
}

html, body {
  height: 100%;
}

h2 {
  font-size: 80px;
  line-height: 80px;
  margin-bottom: 5rem;
  font-weight: 400;
}

h1, h2, h3, h4 {
  color: var(--color-text);
}

a, a:visited {
  color: var(--color-text);
}

.block {
  display: block;
  margin: auto;
}

.current-position {
  margin-top: 30px;
  opacity: 0.5;
}

.desc {
  text-align: left;
}

.round {
  width: 80%;
  max-width: 240px;
  min-height: 160px;
  margin: auto;
  display: block;
  border-radius: 450px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
}

.header_wrapper {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  display: table;
}

.header {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
  padding-bottom: 25px;
  z-index: 1;
  padding-top: 24px;
  box-sizing: border-box;
}
.header h3 {
  font-size: 16px;
  font-family: "Helvetica Neue", sans-serif;
  margin-top: 0px;
}

.who {
  padding: 40px 35px 55px 35px;
  box-sizing: border-box;
}
.who .container {
  max-width: 960px;
}
.who .salute {
  font-size: 56px;
  margin-bottom: 40px;
  font-weight: 400;
}
.who p {
  margin-bottom: 0;
  font-weight: 100;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 28px;
  line-height: 36px;
}

.container {
  width: 100%;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
}

.projects {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: auto;
  overflow: hidden;
  padding-bottom: 45px;
}
.projects p {
  font-size: 16px;
}
.projects img {
  border-radius: 2px;
  box-shadow: 2px 3px 4px rgba(0, 0, 0, 0.1);
  max-width: 95%;
  margin-bottom: 15px;
}
.projects .info {
  text-align: left;
  margin: 50px auto 8rem auto;
  max-width: 960px;
  box-sizing: border-box;
  padding: 0 10px 0px 10px;
}
.projects .info h3 {
  line-height: 50px;
  font-size: 50px;
  margin-bottom: 12px;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.1);
}
.projects .info h3 a {
  text-decoration: none;
  background-image: url("../img/icons8-external-link.svg");
  background-repeat: no-repeat;
  background-position: right 0% bottom 35%;
  padding-right: 30px;
}
.projects .info h3 a:hover {
  text-decoration: underline;
}
.projects .info p {
  font-weight: 100;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 28px;
  line-height: 36px;
}
.projects .info .tech {
  font-size: 18px !important;
  color: #1d9bf0;
  font-style: italic;
  font-family: georgia, serif;
  margin-bottom: 0;
}
.projects .info .tools {
  color: gray;
}
.projects .info .explanation {
  font-style: italic;
  font-family: georgia, serif;
  font-size: 18px !important;
  letter-spacing: 1px;
  line-height: 24px;
}

.menu {
  display: block;
  margin-top: 40px;
}
.menu li {
  display: inline;
  margin: 0 30px 0 30px;
}
.menu a {
  display: inline-block;
  height: 70px;
  width: 70px;
  line-height: 180px;
  text-align: center;
  margin: auto;
  text-decoration: none;
  border: 2px solid #fff;
  border-radius: 70px;
  margin-bottom: 50px;
  transition: all 0.1s linear;
  -moz-transition: all 0.1s linear;
  -webkit-transition: all 0.1s linear;
}

#contact {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#contact a {
  text-decoration: none;
}
#contact .skype {
  font-size: 20px;
}
#contact .phone {
  font-size: 30px;
  margin-top: 20px;
}
#contact .email {
  font-size: 24px;
}

#skillset {
  text-align: left;
}
#skillset ul {
  font-weight: 100;
  font-family: "Helvetica Neue", sans-serif;
  font-size: 28px;
  line-height: 36px;
  margin: 0 auto 0 auto;
  text-align: center;
}
#skillset li {
  display: inline;
  padding: 0px 20px 0px 20px;
}

@media (min-width: 800px) {
  #contact .email {
    font-size: 28px !important;
  }

  .project {
    height: auto;
    padding-bottom: 0px;
  }
  .project img {
    margin-bottom: 60px;
    max-width: 800px;
    max-height: none;
  }

  .square {
    width: 800px;
  }

  .menu {
    display: block;
  }
  .menu li {
    display: block;
  }
  .menu a {
    display: block;
    width: 60px;
    height: 60px;
    line-height: 150px;
    margin-bottom: 50px;
  }

  .surname {
    display: inline;
  }
}
@media (min-width: 1280px) {
  .surname {
    display: inline;
  }

  .project {
    height: auto;
    padding-bottom: 60px;
  }
  .project img {
    max-width: 1000px;
    max-height: none;
  }

  .square {
    width: 500px;
  }

  .round {
    width: 80%;
    max-width: 300px;
    max-height: 300px;
  }
}
@media (prefers-color-scheme: dark) {
  :root {
    --color-background: #000;
    --color-text: #fff;
  }
}
@media (prefers-color-scheme: light) {
  :root {
    --color-background: #fff;
    --color-text: #000;
  }
}

/*# sourceMappingURL=screen.css.map */
