@font-face {
  font-family: "FontAwesome";
  src: url("../fonts/fontawesome-webfont.eot?v=4.7.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.7.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.7.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.7.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.7.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Oxanium";
  src: url("../fonts/Oxanium-Medium.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Jetbrains";
  src: url("../fonts/JetBrainsMono-Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #222222;
  color: white;
  font-family: "Jetbrains", Arial, Helvetica, sans-serif;
  font-size: 13px;
  overflow-x: hidden;
  background-image: url(../img/grid3.png);
  background-repeat: repeat;
  animation-name: bg-animation;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.center-horz {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  padding: 0 20px;
}

.center-vert {
  width: 100%;
  min-height: 100svh;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content {
  container-type: inline-size;
  text-align: center;
  position: relative;
}
.content .circuits {
  display: block;
  width: 200%;
  height: auto;
  margin: 0 auto;
  position: absolute;
  left: 50%;
  top: -15%;
  transform: translate(-50%, 0);
}
.content .avatar {
  display: block;
  width: 60%;
  height: auto;
  margin: 0 auto;
  border-radius: 100%;
  border: 2px solid #444444;
  position: relative;
  z-index: 2;
}
.content h1 {
  font-family: "Oxanium";
  font-weight: 400;
  text-align: center;
  font-size: 15cqi;
  line-height: 1;
  margin-top: 30px;
  display: inline-block;
  position: relative;
}
.content h1 sup {
  font-size: 13%;
  position: absolute;
  left: 100%;
  top: 0.7cqi;
  width: 12cqi;
  opacity: 0.3;
}
.content .subline {
  text-align: center;
  color: #555555;
  font-size: 20px;
}
.content #kontakt-bereich {
  margin-top: 30px;
}
.content #kontakt-bereich #show-contact-btn {
  outline: none;
  border: 0;
  border: none;
  padding: 10px 15px;
  font-size: 18px;
  color: white;
  background-color: blue;
  border-radius: 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
  background: linear-gradient(90deg, deepskyblue, darkviolet, blue);
  background-size: 200% 200%;
  animation: gradient-animation 18s ease infinite;
}
.content #kontakt-bereich #show-contact-btn::after {
  font-family: "FontAwesome";
  font-size: 18px;
  content: " \f061";
}
.content #kontakt-bereich .info-list {
  list-style-type: none;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
@media screen and (max-width: 500px) {
  .content #kontakt-bereich .info-list {
    grid-template-columns: 1fr;
  }
}
.content #kontakt-bereich .info-list li a {
  text-decoration: none;
  background-color: #1a1a1a;
  padding: 15px 15px 15px 42px;
  position: relative;
  display: block;
  color: white;
  line-height: 1.1;
  border-radius: 6px;
  border: 1px solid #444444;
  vertical-align: middle;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.content #kontakt-bereich .info-list li a:hover {
  border-color: #ff3180;
}
@media screen and (max-width: 500px) {
  .content #kontakt-bereich .info-list li a:hover {
    border-color: #444444;
  }
}
.content #kontakt-bereich .info-list li a::before {
  font-family: "FontAwesome";
  font-size: 18px;
  content: "\f098";
  position: absolute;
  left: 15px;
  top: 13px;
  color: #ff3180;
}
.content #kontakt-bereich .info-list li.mail a::before {
  content: "\f199";
}
.content #kontakt-bereich .info-list li.linkedin a::before {
  content: "\f08c";
}
.content #kontakt-bereich .info-list li.xing a::before {
  content: "\f169";
}
.content #kontakt-bereich .info-list li.dnd a::before {
  content: "\f02d";
}
.content #kontakt-bereich .info-list li.portfolio a::before {
  content: "\f121";
}
.content #kontakt-bereich .info-list li.noizebreed a::before {
  content: "\f001";
}
.content #kontakt-bereich .info-list li.revivaljam a::before {
  content: "\f001";
}

@keyframes gradient-animation {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
@keyframes bg-animation {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 59px -59px;
  }
}/*# sourceMappingURL=styles.css.map */