/*
 * Globals
 */
 
/* Links */
a,
a:focus,
a:hover {
  color: #fff;
}
 
/* Customize buttons */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus {
  color: #333;
  text-shadow: none; /* Prevent inheritance from 'body' */
  background-color: #fff;
  border: 0.05rem solid #fff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #bb1b1b;
  border: 0.05rem solid #bb1b1b;
}

.btn-primary:focus {
  box-shadow: 0 0 0.5rem rgba(187, 27, 27, 1);
}

.btn-primary:active {
  color: #fff !important;
  background-color: #f00 !important;
  box-shadow: 0 0 0.5rem rgba(255, 0, 0, 1) !important;
  border: 0.05rem solid #f00 !important;
}

.btn-outline-primary {
  color: #fff;
  text-shadow: none; /* Prevent inheritance from 'body' */
  border-color: #fff;
}

.btn-outline-primary:hover {
  color: #333;
  background-color: #fff;
  border-color: #fff;
}

.btn-outline-primary:active {
  color: #fff !important;
  background-color: #f00 !important;
  box-shadow: 0 0 0.5rem rgba(255, 0, 0, 1) !important;
  border: 0.05rem solid #f00 !important;
}

.btn-outline-primary:focus {
  box-shadow: 0 0 0.5rem rgba(187, 27, 27, 1);
}

.btn-secondary,
.btn-secondary:hover,
.btn-secondary:focus {
  color: #fff;
  text-shadow: none; /* Prevent inheritance from 'body' */
  background-color: #bb1b1b;
  border: 0.05rem solid #bb1b1b;
}

/* Customize input hightlighting */
textarea:focus, 
textarea.form-control:focus, 
input.form-control:focus, 
input[type=text]:focus, 
input[type=password]:focus, 
input[type=email]:focus, 
input[type=number]:focus, 
[type=text].form-control:focus, 
[type=password].form-control:focus, 
[type=email].form-control:focus, 
[type=tel].form-control:focus, 
[contenteditable].form-control:focus {
  box-shadow: 0 0 0.5rem rgba(255, 0, 0, 1);
}
 
/*
 * Base Structure
 */
html,
body {
  min-height: 100%;
}


body {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: center;
  -webkit-box-pack: center;
  justify-content: center;
  color: #fff;
	font-family: 'Roboto', sans-serif;
}

.cover-container {
  max-width: 42em;
  background: rgba(20, 20, 20, 0.75);
}

/*
 * Header
 */
.masthead {
  margin-bottom: 2rem;
}

.masthead h1 {
  font-variant: small-caps; 
  margin-top: 50px; 
  margin-bottom: 50px; 
  font-size: 8rem; 
  line-height: 0.9;
}

/*
 * Cover
 */
.cover {
  padding: 0 1.5rem;
}
.cover .btn-lg {
  padding: 0.5rem 1.25rem;
  font-size: 1.75rem;
  font-weight: 700;
  font-variant: small-caps;
}

/*
 * Main
 */
main p#description {
  font-size: 1.25rem;
}

main > div {
   margin-top: 60px;
}

/*
 * Footer
 */
.mastfoot div.inner {
   margin: 60px 0;
} 
 
.social-icon {
  border: none;
  fill: #fff;
  padding: 8px;
  height:64px;
  width:64px
}

.social-icon svg {
  height: 100%;
  width: 100%;
}

.social-icon:hover {
  fill: #333;
}