/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  font-family: 'RBNo3.1', sans-serif;
  color: #fff;
  background-color: #0b0e0f;
  
}

/* Load RBNo3.1 font in various weights */
@font-face {
  font-family: 'RBNo3.1';
  src: url('../fonts/RBNo3.1-Book.otf');
  font-weight: normal;
}

@font-face {
  font-family: 'RBNo3.1';
  src: url('../fonts/RBNo3.1-Bold.otf') format('opentype');
  font-weight: bold;
}

@font-face {
  font-family: 'RBNo3.1';
  src: url('../fonts/RBNo3.1-Light.otf') format('opentype');
  font-weight: 300;
}

@font-face {
  font-family: 'RBNo3.1';
  src: url('../fonts/RBNo3.1-Black.otf') format('opentype');
  font-weight: 900;
}

@font-face {
  font-family: 'ABeeZee';
  src: url('../fonts/ABeeZee-Regular.ttf') format('truetype');
  font-weight: normal;
}

@font-face {
  font-family: 'SourceSansPro';
  src: url('../fonts/SourceSansPro-Regular.otf') format('opentype');
  font-weight: normal;
}

#header {
  height: 106px;
  padding: 36px 0;
  border-left: 50px solid #5e0e11;
  background-color: #0b0e0f;
}

#logo {
  width: 278px;
  margin-left: 56px;
}

#login {
  float: right;
  color: #fff;
  padding: 10px 20px;
  border: 2px solid #5e0e11;
  background-color: #5e0e11;
  margin-right: 30px;
  text-decoration: none;
}

h1, h2, .labels {
  font-family: 'RBNo3.1', Arial, Tahoma, Verdana;
  font-weight: 450;
}

h1 { 
  font-size: 106px;
  letter-spacing: 12px;
}
 
h2 { 
  font-size: 35px;
  letter-spacing: 4px;
}

.labels {
  padding-top: 30px;
  padding-bottom: 10px;
  font-size: 19px;
}

a {
  text-decoration: none;
}

#bar p {
  width: 50%;
  color: #fff;
  font-size: 16px;
  font-family: 'ABeeZee', Arial, Tahoma, Verdana;
  margin-top: 40px;
}

#bar span {
  float: right;
}

#bar img {
  width: 50%;
  float: left;
  margin-top: 10px;
  margin-bottom: 30px;
}

#container a:first-of-type {
  font-size: 38.338px;	
  letter-spacing: -1.534px;
  font-family: 'RBNo3.1', Arial, Tahoma, Verdana;
  text-decoration: none;
}

.info {
  font-family: 'SourceSansPro', Arial, Tahoma, Verdana;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.575px;
  color: #EBEBEB;
}

#container {
  padding: 100px 0 0 60px;
  border-left: 50px solid #5e0e11;
  background: #0b0e0f;
  padding-bottom: 100px;
  background: url("../img/background.png");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (max-width: 600px) {
  h1 {
    font-size: 33px;
  }
  
  h2 {
    font-size: 27px;
  }
  #container, #header {
    border-left: 20px solid #5e0e11;
  }
  #container {
    padding-left: 30px;
  }
}