/*=================================================== Page ===============================================*/

html {
  display: table;
  width: 100%;
  height: 100%;
}

body {
  display: table-cell;
  margin: 0;
  vertical-align: middle;
  text-align: center;
  font: 300 20px/1.4 Roboto, "Open Sans", Helvetica, Arial, sans-serif;
  color: #fff;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.66);
  background: #4d4646 50% 50% no-repeat;
  background-size: cover;
}

#logoImage {
  max-width: 65%;
}

/*=============================================== Background ===========================================*/

.background-container {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

#backgroundVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%;
  min-height: 100%;
}

/*================================================ Layout ============================================*/

.content {
  padding: 5% 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
}

/*================================================= Text =============================================*/

.subtitle {
  margin-bottom: 30px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 100;
}

.description {
  margin-bottom: 60px;
  font-size: 20px;
}

/*=========================================== Responsiveness =======================================*/

@media (max-width: 1200px) {
  #logoImage {
    max-width: 80%;
  }

  .content {
    padding: 0 0;
  }
}

@media (max-width: 979px) {
  /* Hide background on small devices */
  /*
  .background-container {
    display: none;
  }
  */
  #logoImage {
    max-width: 90%;
  }
}

@media (max-width: 767px) {
  body {
    padding: 20px;
  }

  #logoImage {
    max-width: 100%;
  }
}

@media (max-width: 550px) {
}
