@font-face {
  font-family: 'Roboto-Thin'; /*a name to be used later*/
  src: url("../fonts/roboto-thin.ttf"); /*URL to font*/
}

@font-face {
  font-family: 'Roboto'; /*a name to be used later*/
  src: url("../fonts/roboto-regular.ttf"); /*URL to font*/
}

@font-face {
  font-family: 'Geometos'; /*a name to be used later*/
  src: url("../fonts/geometos.ttf"); /*URL to font*/
}

html, body {
  height: 100%;
}

label {
  font-family: Roboto, sans-serif;
  text-align: center;
  margin: 20px;
  display: block;
}

h1 {
  font-family: Geometos, sans-serif;
  text-align: center;
  margin: 20px;
  display: block;
}

h2 {
  font-family: Arial, sans-serif;
  text-align: center;
  display: block;
}

h3 {
  font-family: Roboto, sans-serif;
  text-align: center;
  display: block;
}


body {
  background-image: linear-gradient(to bottom right, #ffffff, #ffffff, #ffffff, #ffffff, #dedede, #c8c8c8);
  margin: auto;
  justify-content: center;
  align-items: center;
  display: flex;

}


#brandContainer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  text-align: center;

}

#brandContainer a {
  width: 200px;
  height: auto;
  margin: 10px;
  font-size: 30px;


  font-family: Roboto-Thin, serif;

  color: blue;
  text-decoration: none; /* no underline */

  transition: all .4s ease-in-out;
}

#brandContainer a:hover {
  transform: scale(1.5);

}


hr {
  border: 0;
  height: 1px;
  margin: 18px 0;
  position: relative;
  background: -moz-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, right top, color-stop(0%, rgba(0, 0, 0, 0)), color-stop(10%, rgba(0, 0, 0, 0)), color-stop(50%, rgba(0, 0, 0, 0.65)), color-stop(90%, rgba(0, 0, 0, 0)), color-stop(100%, rgba(0, 0, 0, 0))); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%); /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%); /* Opera 11.10+ */
  background: -ms-linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%); /* IE10+ */
  background: linear-gradient(left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 10%, rgba(0, 0, 0, 0.65) 50%, rgba(0, 0, 0, 0) 90%, rgba(0, 0, 0, 0) 100%); /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#00000000', GradientType=1); /* IE6-9 */
}

hr:before {
  content: "";
  display: block;
  border-top: solid 1px rgba(0, 0, 0, 0);
  width: 100%;
  height: 1px;
  position: absolute;
  top: 50%;
  z-index: 1;
}
