html
{
    height: 100%;
}
body
{
    background-image: url('/Images/Background.jpg');
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.5)), url('/Images/Background.jpg') center center no-repeat;
    background-size: cover;
}
.header {
	background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5)), url('/Images/Background.jpg') center center no-repeat;
	background-size: cover;
}

.header-content {
	padding-top: 10rem;
	padding-bottom: 2.125rem;
	text-align: center;
}

.header .text-container {
	margin-bottom: 3rem;
}


.header .btn-solid-lg {
	margin-right: 0.5rem;
	margin-bottom: 1.25rem;
}


.center {
    margin: 0;
    position: absolute;
    top: 70%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  
.btn-solid-lg {
	display: inline-block;
	padding: 1.375rem 2.125rem 1.375rem 2.125rem;
	border: 0.125rem solid white;
	border-radius: 0.25rem;
	background-color:white;
	color: gray;
	font: 700 0.75rem/0 "Montserrat", sans-serif;
	text-decoration: none;
    transition: all 0.2s;
}

.btn-solid-lg:hover {
	background-color: transparent;
	color:white;
	text-decoration: none;
}

/* Create two equal columns that floats next to each other */
.column {
	float: left;
	width: 50%;
	padding: 10px;
	height: 300px; /* Should be removed. Only for demonstration */
  }
  
  /* Clear floats after the columns */
  .row:after {
	content: "";
	display: table;
	clear: both;
  }
  
  /* Responsive layout - makes the two columns stack on top of each other instead of next to each other */
  @media screen and (max-width: 600px) {
	.column {
	  width: 100%;
	}
  }