

body {
	font-family: 'Helvetica', sans-serif;
}

h1 {
	font-weight: 500;
	font-size: 32px;
	color: #FFF;
	padding-top: 0px;
	letter-spacing: 0.25px;
	margin-top: 30px;
	margin-bottom: 15px;
}

h2 {
	font-weight: 400;
	font-size: 18px;
	color: #FFF;
	padding-top: 0px;
	letter-spacing: 0.25px;
	line-height: 25px;
	margin-top: 5px;
	margin-bottom: 20px;
}



a {
	font-weight: 400;
	font-size: 20px;
	color: #FFF;
	text-decoration: none;
	letter-spacing: 0.5px;
}

a:hover {
  text-decoration: none;
  color: #C61131;
}

.main.text-center {
	display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
	overflow: auto;
}

.main {
	height: 100vh;
	width: 100%;
	background-image: url('images/bg-image.jpg');
	background-position: bottom;
	background-size: cover;
	background-repeat: no-repeat;
	position: relative;
}

div#logo {
	z-index: 99;
}

#logo img {
	width: 320px;
    display: block;
    margin: -8px auto;
    z-index: 99;
}

.content {
	position: relative;
	left: 0;
	right: 0;
	top: 10%;
	bottom: 0;
	z-index: 2;
}

.main .overlay {
	position: absolute;
	width: 100%;
	height: 100vh;
	background: rgba(33, 33, 33, 0.60);
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 1;
}

.content a {
	width: 100%;
	display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 640px) {
  .mobile-only {
    display: block;
  }
}

@media screen and (max-width: 1024px) {
    .desktop-only {
        display: none;
    }
}

