@import "reboot.css";
@font-face {
  font-family: fontello;
  font-style: normal;
  font-weight: 400;
  src: url("./font/fontello.eot?94163368");
  src: url("./font/fontello.eot?94163368#iefix") format("embedded-opentype"), url("./font/fontello.woff2?94163368") format("woff2"), url("./font/fontello.woff?94163368") format("woff"), url("./font/fontello.ttf?94163368") format("truetype"), url("./font/fontello.svg?94163368#fontello") format("svg");
}

.icon::before {
  display: inline-block;
  width: 1.75em;
  padding: .25em 0;
  font: 400 1.5em fontello;
  color: #222;
  text-align: center;
  text-decoration: inherit;
  text-transform: none;
  background-color: #ddd;
  border-radius: .1em;
  transition: background-color .75s .375s, color .75s;
  speak: none;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.xing::before {
  content: "\f168";
}

.skype::before {
  content: "\f17e";
}

.mail::before {
  content: "\f0e0";
}

.doc-inv::before {
  content: "\f15b";
}

.github::before {
  content: "\f09b";
}

.linkedin::before {
  content: "\f0e1";
}

.main {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  text-align: center;
  background-color: #222;
}

.container {
  display: flex;
  flex-flow: column wrap;
  width: 75vw;
}

.header {
  font: 600 3.5em/1.25em "SF Pro Display", "SF Pro Icons", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: #fff;
  letter-spacing: -.015em;
  opacity: 0;
  animation: .75s ease-in .25s 1 forwards smoothDisplay;
}

.description {
  color: #ddd;
  opacity: 0;
  animation: .75s ease-in .75s 1 forwards smoothDisplay;
}

.icons {
  display: flex;
  flex-flow: row;
  justify-content: center;
  padding: 0;
  margin-top: 1em;
  list-style-type: none;
  opacity: 0;
  animation: .75s ease-in 1.5s 1 forwards smoothDisplay;
}

.icons > li:not(:last-child) {
  margin-right: .75em;
}

.icon:hover::before,
.icon:active::before {
  color: #ddd;
  background-color: #222;
  transition: background-color .75s, color .75s .375s;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@keyframes smoothDisplay {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 600px) {
  .container {
    width: 85%;
    margin-top: 2.5em;
  }
  .icons {
    margin-top: 0;
  }
}
