@font-face {
  font-family: "JetBrainsMono";
  src: url("../fonts/JetBrainsMono/ttf/JetBrainsMono-Regular.ttf");
  src: url("../fonts/JetBrainsMono/web/woff/JetBrainsMono-Regular.woff") format("woff"), url("../fonts/JetBrainsMono/web/woff2/JetBrainsMono-Regular.woff2") format("woff2"), url("../fonts/JetBrainsMono/web/eot/JetBrainsMono-Regular.eot") format("eot");
}
body:before {
  content: "";
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
  background: url("../img/wallpaper.jpg") no-repeat center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

body {
  margin: auto;
  padding: 0;
  background: #222;
  color: #FFF;
  font-family: "JetBrainsMono";
  margin-top: 50px;
}
body nav {
  display: flex;
  justify-content: space-around;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  background: #222;
  z-index: 1;
}
body nav a {
  color: #FFF;
  text-decoration: none;
  font-size: 22px;
  text-align: center;
  flex: 1;
  padding: 10px 20px;
}
body nav a.active {
  background: #444;
}
body nav a:hover {
  background: #000;
}
body nav a:focus {
  background: none;
}
body article {
  background: #222;
  padding-left: calc(50vw - 400px);
  padding-right: calc(50vw - 400px);
}
body article iframe {
  opacity: 0.6;
  margin-bottom: 10px;
  box-sizing: border-box;
}
body .article, body .article-col {
  display: flex;
  min-height: 80vh;
}
body .article-col {
  flex-direction: column;
  justify-content: space-evenly;
}
body .article:nth-child(4n), body .article-col:nth-child(4n), body .article:nth-child(4n-1), body .article-col:nth-child(4n-1) {
  flex-direction: row-reverse;
}
body .article > div, body .article-col > div {
  padding: 20px;
}
body .article__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
body .article__left form {
  width: 100%;
  margin: 0;
  padding: 0;
  max-width: 500px;
}
body .article__left form fieldset {
  border: none;
  margin: 0;
  padding: 0;
  margin-bottom: 20px;
}
body .article__left form fieldset input,
body .article__left form fieldset textarea {
  border: none;
  width: 100%;
  padding: 5px 10px;
  font-family: "JetBrainsMono";
  background: #FFF;
  box-sizing: border-box;
  font-size: 18px;
}
body .article__left form input[type=submit] {
  background: #FFF;
  font-size: 18px;
  border-radius: 0;
  border: none;
  padding: 10px 20px;
}
body .article__right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}
body img.avatar {
  margin: 10px auto;
  display: block;
}
body img.icon {
  margin: 10px auto;
  display: block;
  height: 200px;
}

#contact .article__left {
    min-width: 360px;
}

hr {
  height: 400px;
  border: none;
  position: relative;
  margin: 0;
  background-image: url("../img/horizontalrule.png");
}
.music-list {
  width: 200px;
  display: flex;
  list-style: none;
  flex-wrap: wrap;
  padding: 0;
  justify-content: space-around;
}
.music-list li {
  background: #000;
  padding: 10px;
  width: 60px;
  height: 60px;
  margin: 0 0 10px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.music-list li svg {
  transition: ease-in-out 200ms;
}
.music-list li:hover svg {
  transform: scale(1.2);
}

.not-selectable {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

@media only screen and (max-width: 540px) {
  body {
    margin-top: 140px;
  }

  nav {
    flex-direction: column;
    position: fixed;
  }

  .article, body .article-col {
    flex-direction: column !important;
    padding: 10px !important;
    text-align: justify;
  }
  .article > div, body .article-col > div {
    padding: 10px !important;
  }

  img.avatar {
    height: 300px;
  }

  #contact .article__left {
    min-width: auto;
  }
}

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