@font-face {
  font-family: Noto Sans Regular;
  src: url("../fonts/notosans-regular-webfont.woff2");
  font-display: swap;
}
* {
  font-family: Noto Sans Regular, sans-serif;
}

h2 {
  font-family: monospace;
}

@keyframes blink {
  from {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
header {
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
header .name {
  color: #006087;
}
header .profession {
  color: darkred;
}
header .profession:after {
  content: "|";
  animation: blink 1s step-end infinite;
}
header code {
  font-size: 3rem;
  font-family: monospace;
}
header img {
  width: 44px;
  height: 44px;
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
}

* {
  margin: 0;
}

.content {
  max-width: 1280px;
  margin: auto;
  font-family: sans-serif;
  position: relative;
}
@media (min-width: 1000px) {
  .content {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media (max-width: 1310px) {
  .content {
    margin: auto 1rem;
  }
}

#scrollIndicator {
  transition: 0.3s ease;
}

.hidden {
  opacity: 0;
  transition: 0.3s ease;
}

nav {
  display: none;
}
@media (min-width: 1000px) {
  nav {
    display: block;
    min-width: 153px;
  }
}
nav ul {
  list-style-type: none;
  padding-left: 0;
}
@media (min-width: 1000px) {
  nav ul {
    position: sticky;
    top: 50%;
    transform: translateY(-50%);
  }
}
nav li a {
  text-decoration: none;
  color: black;
  padding: 1rem;
  display: block;
  background-color: lightgrey;
  margin-bottom: 1rem;
  border-radius: 1rem;
  transition: 0.3s ease;
}
nav li a:hover {
  background-color: grey;
  transition: 0.3s ease;
  color: white;
}
nav .active {
  background-color: grey;
  transition: 0.3s ease;
  color: white;
}

#experience {
  margin-top: 0;
  display: flex;
  align-items: center;
  padding-right: 1rem;
}
#experience ul {
  padding-left: 0;
  list-style-type: none;
  margin-top: 1rem;
}
#experience li {
  display: inline;
  font-size: 5rem;
  padding-right: 0.5rem;
  color: darkred;
}
#experience li:nth-child(2n) {
  color: #006087;
}

#portfolio {
  padding-top: 5rem;
  display: flex;
  align-items: center;
  padding-right: 1rem;
}
#portfolio .element {
  margin: 2rem 0;
}
@media (min-width: 768px) {
  #portfolio .element {
    display: flex;
    align-items: center;
  }
}
#portfolio .element img {
  width: 100%;
  border-radius: 1rem;
  height: auto;
}
@media (min-width: 768px) {
  #portfolio .element img {
    width: 25%;
    max-width: 150px;
    margin-right: 1rem;
  }
}
#portfolio .element h3 {
  margin-top: 1rem;
}
@media (min-width: 768px) {
  #portfolio .element h3 {
    margin-top: 0;
  }
}
#portfolio .element p {
  margin: 1rem auto;
}
#portfolio .element a {
  color: darkred;
  font-family: monospace;
}
#portfolio .element a img {
  width: 50%;
  border-radius: 0;
}
@media (min-width: 768px) {
  #portfolio .element a img {
    max-width: 140px;
  }
}

footer {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

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