div#notification-bar {
  display: none;
  position: fixed;
  line-height: 4rem;
  text-align: center;
  color: black;
  width: 100%;
  z-index: 1;
  background: #F8D036;
  opacity: .95; }

* {
  padding: 0;
  margin: 0;
  font-size: inherit;
  font-family: inherit;
  list-style-type: none;
  color: inherit;
  box-sizing: border-box;
  outline: none; }

body {
  font-size: 1.125rem;
  font-family: Roboto Mono, monospace;
  background: #5A7BA1;
  color: white; }

main {
  margin: 0 auto;
  min-height: 100vh;
  display: -ms-flexbox;
  display: flex; }
  main > div {
    -ms-flex: 1;
    flex: 1; }

#left {
  max-width: 800px;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: calc(2vw + 5%) 3vw; }
  @media (max-width: 46em) {
    #left {
      background: url("img/dt-bg.jpg") no-repeat;
      background-position: 100% 0;
      background-size: cover;
      animation: backgroundFade 20s ease-out;
      padding: calc(2vw + 5%) 10vw; } }

header {
  -ms-flex: 2;
  flex: 2;
  position: relative; }
  header #dt-logo {
    height: 100%;
    width: 100%;
    position: absolute;
    z-index: 1;
    background-image: url("img/dt-logo.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-origin: content-box;
    background-size: contain;
    animation: fadeDelay 1.25s; }

div.copy {
  text-align: center;
  padding: 1vw 0;
  font-size: 1rem;
  /* MIN FONT SIZE */
  /* MAX FONT SIZE */ }
  @media (min-width: 46em) {
    div.copy {
      font-size: 2vw; } }
  @media screen and (min-width: 62.5em) {
    div.copy {
      font-size: 1.25rem; } }

#signup {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center; }
  #signup form {
    display: -ms-flexbox;
    display: flex;
    width: 100%; }
    #signup form input, #signup form button {
      border: none;
      background: white;
      padding: 1rem;
      -ms-flex: 2;
      flex: 2;
      font-family: monospace;
      color: black; }
    #signup form button {
      background: #F8D036;
      cursor: pointer;
      -ms-flex: 1;
      flex: 1;
      text-transform: uppercase;
      letter-spacing: .0625rem; }

#logos {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: center;
  justify-content: center; }
  #logos ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: distribute;
    justify-content: space-around; }
    #logos ul li {
      display: inline-block; }
      #logos ul li img {
        height: 50px; }

#social {
  -ms-flex: 1;
  flex: 1;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
  justify-content: center;
  -ms-flex-align: center;
  align-items: center; }
  #social ul li {
    display: inline-block;
    font-size: 2rem;
    margin: 0 .5rem; }
    #social ul li img {
      max-width: 50px;
      position: relative;
      top: 15px; }
  #social a {
    transition: .2s color; }
    #social a:hover {
      color: #F8D036; }

#right {
  position: relative;
  -ms-flex: 2;
  flex: 2;
  background: url("img/dt-bg.jpg") no-repeat;
  background-position: 100% 0;
  background-size: cover;
  animation: backgroundFade 10s ease-out; }
  @media (max-width: 46em) {
    #right {
      display: none; } }

@keyframes backgroundFade {
  0% {
    opacity: 0;
    background-position: 0 0; }
  10% {
    opacity: 1; }
  100% {
    background-position: 100% 0; } }
@keyframes dropFade {
  0% {
    opacity: 0;
    top: -10px; }
  100% {
    opacity: 1;
    top: 0; } }
@keyframes fadeDelay {
  0% {
    opacity: 0; }
  20% {
    opacity: 0;
    top: -5px; }
  100% {
    opacity: 1;
    top: 0; } }
