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

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

h1 {
	font-weight: 600;
}

h2 {
	font-weight: 100;
}

.btn-primary {
	background-color: #3393e1;
	border-color: #3393e1;
	width: 200px;
    padding: 12px;
    font-size: 22px;
    letter-spacing: 0.5px;
    border-radius: 30px;
}

.btn-primary:hover {
	background-color: #003080;
	border-color: #003080;
}

.bg-primary {
	background-color: #3393e1 !important;
}

#logo {
    position: relative;
    width: 400px;
    height: 300px;
    margin: 0 auto;
    top: -70px;
    z-index: 10;
}

#logo img {
    width: 100%;
    margin-top: 60px;
}

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

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

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

@media (max-width: 991px) {
	#logo img {
		width: 90%;
	}

	.content {
		top: 30%;
		padding: 10px;
	}
}