body {
	font-family: 'Roboto', sans-serif;
	font-weight: 100;
	font-size: 28px;
	line-height: 35px;
	color: #fff;
	background-color: #ddd;
	background-image: url('../img/background.jpg');
	background-repeat: no-repeat;
	background-size: cover;
}

@media all and (max-width: 560px) {
	body {
		font-size: 18px;
		line-height: 25px;
	}
}

html body {
	margin: 0;
	padding: 0;
}

.header-section {
	background-color: #000;
}

.header-section .wrapper {
	padding: 35px 20px;
}

.header-section img {
	max-width: 215px;
}

.container-section {
	padding: 20px;
	display: flex;
	flex-direction: column;
	height: 90%;
}

.title {
	margin-bottom: 50px;
	padding: 12px 20px 25px;
	background-color: #000;
	border-radius: 20px;
	text-align: center;
}

.d-flex {
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

@media all and (max-width: 500px) {
	.d-flex {
		display: block;
	}
}

.btn {
	margin: 0 0 20px;
	padding: 10px 40px;
	display: block;
	color: #fff;
	text-align: center;
	background-color: #000;
	border-radius: 20px;
	text-decoration: none;
}

@media all and (max-width: 890px) {
	.btn:first-child {
		margin-right: 20px;
	}
}

@media all and (max-width: 500px) {
	.btn:first-child {
		margin-right: 0;
	}
}

.btn:hover {
	background-color: #202020 !important;
}

h1 {
	font-size: 52px;
	margin: 40px 0 0;
	font-weight: 100;
}

@media all and (max-width: 990px) {
	h1 {
		font-size: 35px;
		line-height: 40px;
	}
}

h2 {
	padding: 20px;
	font-size: 38px;
	margin: 40px 0 0;
	font-weight: 100;
	text-align: center;
	color: #fff;
	background-color: #000;
	border-radius: 20px;
}

@media all and (max-width: 990px) {
	h2 {
		font-size: 28px;
		line-height: 35px;
	}
}

img {
	display: block;
    max-width: 100%;
    width: 100%;
    height: auto;
}

.wrapper {
	max-width: 960px;
	margin: auto;
}