@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

body {
	background: #303133;
	font-family: 'Roboto', sans-serif;
	color: white;
}
a {
	color: white;
	text-decoration: none;
	outline: none;
    -webkit-transition: 0.2s;
    -moz-transition: 0.2s;
    -ms-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
a:hover, a:focus, a:active {
	text-decoration: none;
	outline: none;
	color: #f78e1e;
}
.main {
	height: 100vh;
}
.main .branding_logo {
	padding: 30px 0;
}
.main .branding_logo img {
	width: 300px;
}
.main h1 {
	font-weight: 700;
	color: #f78e1e;
}
.main h2 {
	font-weight: 400;
	font-size: 20px;
	color: white;
	margin-bottom: 30px;
}
.btlink {
	background: #f78e1e;
	color: white;
	padding: 10px;
	display: block;
	width: 300px;
	margin: 0 auto;
	font-weight: 300;
	border: solid 2px #f78e1e;
	font-size: 18px;
	border-radius: 50px;
	text-transform: uppercase;
}

.btlink:hover {
	background: transparent;
	color: white;
	border-color: white;
}