html,
body {
  height: 100%;
}

body {
  margin: 0;
/*   font-family: 'Roboto', sans-serif; */
  background: #0f2027; /* fallback for old browsers */
  background: -webkit-linear-gradient(to right, #0f2027, #203a43, #2c5364); /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364); 
}

a:link {
  color: #a6e5da;
  text-decoration: none;
}

a:visited {
  color: #a6e5da;
}

a:hover {
  color: #b2e6f0;
}

h1 {
  font-size: 112px;
}

.title {
  color: #e1e1e1;
}

.h-100 {
  height: 100%;
}

.flex-container {
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.heading {
  display: flex;
}


@media (min-width: 768px) and (max-width: 1024px) {
  h1 {
    font-size: 50px;
  }

  #logo {
    width: 300px;
  }

  #logo_text_wrapper {
    flex-direction: column;
  }
}

@media (min-width: 320px) and (max-width: 767px) {
  h1 {
    font-size: 40px;
  }

  #logo {
    width: 300px;
  }

  #logo_text_wrapper {
    flex-direction: column;
  }
}
