@import url('https://fonts.googleapis.com/css?family=Playfair+Display');

body {
  background: #080808 url(../../static/images/lightbulb-bg.jpg) 50% 50% no-repeat;
  background-size: 150%;
  text-align: center;
  padding:0;
  margin:10vh 0 0;
  font-family: 'Playfair Display', serif;
  font-size: 14px;
  color:#fff;
  text-shadow: 2px 2px rgba(0, 0, 0, 0.5);
  animation: bodyBackground 500ms ease-out, opacityFadeIn 1000ms ease-out;
  animation-iteration-count: 1;
}

body {}

a {
  color:#e9e9e9;
  text-decoration: none;
  padding: 0 5px 5px;
  display: inline-block;
  border-bottom: 1px dashed rgba(255,255,255,0.2);
  transition: border-bottom 100ms linear, color 100ms linear;
}

a:hover {
  color:#fff;
  border-bottom-color: rgba(255,255,255,0.4);
}

.wrapper {
  position: absolute;
  top:50%;
  left:50%;
  transform: translate3d(-50%, -50%, 0);
}

.logo-container,
.contact-container {
  width: 50vw;
  display: inline-block;
  margin: 0;
  box-sizing: border-box;
  line-height: 1em;
}

.logo-container::before,
.logo-container::after {
  content:'';
  display: block;
  height: 2px;
  background-color: rgba(255,255,255,0.25);
  margin: 0 auto;
  animation-name: logoBars;
  animation-duration: 1000ms;
  animation-iteration-count: 1;
  transition-timing-function:ease-out;
  position: relative;
}

.logo-container {
  font-size: 70px;
  line-height: 1em;
  position: relative;
  margin-bottom: 5vh;
}

.logo-container::before {
  margin-bottom: 20px;
}

.logo-container::after {
  margin-top: 28px;
}

.contact-container {
  padding: 0 40px 20px;
  border-radius: 5px;
}

.contact-container h1 {
  font-size:24px;
  line-height: 1em;
  padding: 0;
  margin: 0 0 40px;
}

.contact-container p {
  line-height: 1em;
  padding: 0;
  margin: 0 0 0.75em;
}

@keyframes logoBars {
  0% {
    width:0%;
  }
  100% {
    width:100%;
  }
}

@keyframes bodyBackground {
  0% {
    background-size: 130%;
  }
  100% {
    background-size: 150%;
  }
}

@keyframes opacityFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}