html {
  overflow: hidden;
}

body {
  margin: 0
}

#background {
  /* Make border appear inside div */
  box-sizing: border-box;
  border-width: 6px;
  border-radius: 2px;
  width: 100%;
  height: 100%;
}

#background.light {
  border-color: #80cbc4;
}

#background.white {
  border-style: solid;
  border-width: 1px;
  border-color: #ededed;
}

#background.dark {
  border-color: #0097a7;
}

@media (min-height: 75px) {
  #background {
    border-bottom-style: solid;
  }
}

.content {
  font-family: 'Roboto';
  height: 100%;
  top: 0;
  bottom: 0;

  display: flex;
  display: -webkit-flex;
  align-items: center;
  -webkit-align-items: center;
}

#long_headline {
  display: none;
}

@media (min-width: 150px) {
  #short_headline {
    display: none;
  }
  #long_headline {
    display: inline;
  }
}

.headline {
  font-weight: 300;

  overflow: hidden;

  font-size: 13px;
  line-height: 14px;
}

.headline_name {
  font-weight: 400;
}

@media (max-height: 40px) {
  .headline {
    font-size: 10px;
    line-height: 12px;

    font-weight: 400;
  }

  .headline_name {
    font-weight: 500;
  }
}

@media (min-width: 250px) and (min-height: 50px) {
  .headline {
    font-size: 18px;
    line-height: 23px
  }
}

.bodycopy {
  font-weight: 300;
  font-size: 15px;
  line-height: 20px;
  padding-top: 10px;
  display: none;
}

@media (min-width: 728px) {
  .bodycopy {
    padding-top: 4px;
  }
}

@media (min-width: 728px), (min-height: 250px), (min-width: 300px) and (min-height: 150px) {
  .bodycopy {
    display: inline-block;
  }
}

.learnmorelink {
  font-size: 14px;
  font-weight: 400;
  display: block;
  padding-top: 8px;
}

@media (max-height: 45px) {
  .learnmorelink {
    display: none;
  }
}

@media (max-height: 90px) {
  .learnmorelink {
    padding-top: 2px;
  }
}

@media (max-height: 55px) {
  .learnmorelink {
    font-size: 10px;
  }
}

@media (min-width: 250px) and (max-height: 90px) {
  .learnmorelink {
    display: inline-block;
  }
}

.light .bodycopy, .white .bodycopy {
  color: #9e9e9e;
}

.dark .bodycopy {
  color: #e0e0e0;
}

.light, .white {
  color: #616161;
}
.light {
  background-color: #eeeeee;
}
.white {
  background-color: #ffffff;
}
.dark {
  color: #fbfbfb;
  background-color: #455a64;
}

a {
  text-decoration: none;
}

.light .learnmorelink, .white .learnmorelink {
  color: #0097a7;
}
.light .learnmorelink:hover, .white .learnmorelink:hover {
  color: #00838f;
}
.dark .learnmorelink {
  color: #80cbc4;
}
.dark .learnmorelink:hover {
  color: #4db6ac;
}

.logo_wrapper {
  height: calc(80% - 2px);
  max-height: 80px;
  width: 27%;
  max-width: 80px;
  padding: 0 4% 0 0;
  flex-shrink: 0;
  -webkit-flex-shrink: 0;
}

@media (min-width: 100px) {
  .logo_wrapper {
    padding-left: 3%;
  }
}

.logo {
  height: 100%;
}
