@import url('https://fonts.googleapis.com/css?family=Cormorant+Garamond');

html {
	font-size: 100%;
  min-height: 100%;
}

body { /* 96adb6 -> 1e1e1e | 4e5e65 */
	font-family: 'Cormorant Garamond', serif;
	color: #1e1e1e;
  background: #4e5e65;
	background: -o-linear-gradient(bottom right, #a1b6bd, #1e1e1e);
  background: -moz-linear-gradient(bottom right, #a1b6bd, #1e1e1e);
  background: -webkit-linear-gradient(left top, #a1b6bd, #1e1e1e);
  background: linear-gradient(to bottom right, #a1b6bd, #1e1e1e);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a1b6bd', endColorstr='#1e1e1e', GradientType=1);
}

.header, .content, .footer {
/*	width: 100%;*/
}

.content, .footer {
  background-color: rgba(255, 255, 255, 0.8);
	border-radius: 5px;
	border-top: 10px solid #c1c1c1;
	margin-top: 20px;
	padding: 20px;
}

.content {
	font-size: 1.3rem;
}

.footer {
	font-size: 1rem;
}

.h1 {
  padding-top: 5%;
  font-weight: bold;
}

a {
	color: #868e96;
}
a:hover {
	color: #1e1e1e;
	text-decoration: none;
}

.lead {
	color: #c1c1c1;
  margin: 5px 0 10px 0;
}

p.text-left::first-letter {
    font-size: 2rem;
    color: #1e1e1e;
}

.text-right {
	font-size: 1rem;
	text-align: right;
}

.back-to-top {
	opacity: 0.5;
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: none;
}

.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate; }
  .btn-group-justified .btn,
  .btn-group-justified .btn-group {
    float: none;
    display: table-cell;
    width: 1%; }
    .btn-group-justified .btn .btn,
    .btn-group-justified .btn-group .btn {
      width: 100%; }
    .btn-group-justified .btn .dropdown-menu,
    .btn-group-justified .btn-group .dropdown-menu {
      left: auto; }
			
