@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: local('GothicA1-Regular'), local('GothicA1 Regular'),
    url('./fonts/GothicA1-Regular.woff') format('woff');
}
@font-face {
  font-family: 'Gothic A1';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: local('GothicA1-Bold'), local('GothicA1 Bold'),
    url('./fonts/GothicA1-Bold.woff') format('woff');
}

body {
  color: #ffffff;
  background: #151515;
  font-family: 'Gothic A1', 'Helvetica Neue', 'Arial', sans-serif;
  font-size: 14px;
  font-weight: 400;
  margin: 0;
}

.wrapper {
  padding: 30px;
  padding-top: 60px;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.content {
  max-width: 100%;
  width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

h1 {
  opacity: 0;
  margin: 0;
  margin-bottom: 30px;
  font-size: 48px;
  font-weight: 700;
  animation: fadein 2s forwards;
  animation-delay: 0;
}

h2 {
  margin: 0;
  margin-bottom: 5px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 3px;
}

@media (min-width: 500px) {
  .no-wrap {
    white-space: nowrap;
  }
}

p {
  margin: 0;
  color: #949495;
  line-height: 28px;
}

p.bold {
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  word-spacing: 8px;
}

img.profile-pic {
  float: left;
  border-radius: 50%;
  margin-top: 6px;
  margin-right: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: none;
  filter: grayscale(100%);
}

.left {
  width: 380px;
  max-width: 100%;
  margin-right: 20px;
}

.left-content {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 70px);
}

.left-content-top {
  flex: 1;
}

.left-content-top p {
  opacity: 0;
  animation: fadein 2s forwards;
  animation-delay: 0.2s;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  border-bottom: 1px solid #fff;
}

.links {
  margin-top: 20px;
  margin-bottom: 30px;
  transform: translateX(-5px);
}

.links a {
  position: relative;
  opacity: 0;
  padding: 5px;
  animation: fadein 1s forwards;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-bottom: 2px solid transparent;
}

.links a svg {
  fill: #ffffff;
  transition: transform 0.2s;
}

.links a div.border {
  display: block;
  height: 2px;
  position: absolute;
  bottom: 0;
  left: 50%;
  right: 50%;
  transition: 0.2s;
}

.links a:hover div.border {
  background: #ffffff;
  left: 0;
  right: 0;
}

.links a:hover svg {
  transform: translateY(-5px);
}

.links a:nth-child(1) {
  animation-delay: 0.5s;
}

.links a:nth-child(2) {
  animation-delay: 0.6s;
}

.links a:nth-child(3) {
  animation-delay: 0.7s;
}

.links a:nth-child(4) {
  animation-delay: 0.8s;
}

.links a:nth-child(5) {
  animation-delay: 0.9s;
}

.links a:nth-child(6) {
  animation-delay: 1s;
}

.links a:nth-child(7) {
  animation-delay: 1.1s;
}

.right {
  width: 600px;
  max-width: 100%;
}

.box {
  opacity: 0;
  background: #202022;
  padding: 30px;
  margin-bottom: 20px;
  animation: fadein 1s forwards;
  animation-delay: 0.5s;
}

.box:nth-child(1) {
  animation-delay: 0.3s;
}

.box:nth-child(2) {
  animation-delay: 0.4s;
}

.box:nth-child(3) {
  animation-delay: 0.5s;
}

.box:nth-child(4) {
  animation-delay: 0.6s;
}

.box:nth-child(5) {
  animation-delay: 0.7s;
}

.box:nth-child(6) {
  animation-delay: 0.8s;
}

.imprint {
  margin-top: 50px;
  background: #202022;
  width: 100%;
  padding: 50px;
  box-sizing: border-box;
}

.imprint p {
  font-size: 0.8rem;
  margin: 0;
  margin-top: 10px;
}

@keyframes fadein {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 1080px) {
  .right,
  .left {
    width: 100%;
  }
  .left-content {
    min-height: unset;
  }
}
