body {
  font-family: "ff-enzo-web";
  background-color: #eee;
  width: 100vw;
  height: 100vh;
  overflow-x: hidden;
}

.wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

header.banner {
  position: fixed;
  top: -3vh;
  left: 10vw;
  z-index: 9;
}

.switch {
  display: block;
  width: 10vw;
  height: 0;
  padding-top: 220%;
  background-image: url(../images/blitz.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transform-origin: center;
  transition: all 500ms ease-out;
  animation: flash 5s linear infinite;
}

@keyframes shake {
  0% { transform: translate(1px, 1px) rotate(0deg); }
  10% { transform: translate(-1px, -2px) rotate(-1deg); }
  20% { transform: translate(-3px, 0px) rotate(1deg); }
  30% { transform: translate(3px, 2px) rotate(0deg); }
  40% { transform: translate(1px, -1px) rotate(1deg); }
  50% { transform: translate(-1px, 2px) rotate(-1deg); }
  60% { transform: translate(-3px, 1px) rotate(0deg); }
  70% { transform: translate(3px, 1px) rotate(-1deg); }
  80% { transform: translate(-1px, -1px) rotate(1deg); }
  90% { transform: translate(1px, 2px) rotate(0deg); }
  100% { transform: translate(1px, -2px) rotate(-1deg); }
}

@keyframes flash {
  0%,  95%,  98% {opacity: 1;}
  96%, 99%, 100% {opacity: 0;}
}

.switch:hover {
  cursor: pointer;
}

.switch-canvas .switch {
  background-image: url(../images/blitz-orange.svg);
  transform-origin: center;
  transform: rotateZ(-180deg);
}

#main {
  background-color: #FD5200;
  transition: all 500ms ease-out;
  z-index: 1;
}

.switch-canvas #main {
  transform: translateY(-100%);
}

#profile {

}

.portrait {
  margin: 0 auto;
  max-width: 280px;
}

.centered {
  align-items: center;
  display: flex;
  justify-content: center;
  min-height: 100vh;
  padding-top: 3rem;
  padding-bottom: 10rem;
  overflow-x: hidden;
  overflow-y: auto;
}

.home .centered {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.main-box {
  align-items: flex-start;
  display: flex;
  width: 90vw;
  min-height: 50vh;
}

.home .main-box {
  align-items: center;
}

.content-box {
}

.text-box {
  padding-bottom: 5rem;
}

#flip {
  max-width: 100%;
  height: 60vh;
  user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

#flip:hover {
  cursor: pointer;
}

.logo {
  position: fixed;
  right: 5vw;
  bottom: -3vh;
  z-index: 9;
}

.brand {
  display: block;
  text-indent: -5000rem;
  width: 45vw;
  height: 0;
  padding-top: 54%;
  background-image: url(../images/designbuero-hillus.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 98%;
  transform-origin: center;
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

.general-info {
  position: fixed;
  left: 5vw;
  bottom: 0.25rem;
  width: 90vw;
  z-index: 9;
}

.general-info > a {
  font-size: 0.75rem;
  color: black;
}

.social-links {
  display: flex;
  margin-bottom: 0.5rem;
}

.social-links a {
  display: block;
  text-indent: -5000rem;
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 32px;
}

.social-links a.instagram {
  background-image: url(../images/instagram.svg);
}

.social-links a.facebook {
  background-image: url(../images/facebook.svg);
}

.social-links a.email {
  background-image: url(../images/email.svg);
}

@media (min-width: 768px) {
  .main-box {
    width: 50vw;
  }

  .portrait {
    max-width: 480px;
    margin-right: 0;
  }

  .social-links a {
    width: 64px;
    height: 64px;
    background-size: 64px;
  }
}
