html, body{
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
}

body{
	color: #000;
	font-family: 'Montserrat', sans-serif;
	font-weight: 500;
	background: url(imgs/bg.jpg) no-repeat 50% 50% #D6D6D6;
	background-size: cover;
	font-feature-settings: 'pnum' on, 'lnum' on;
}

#content{
	display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    height: 100vh;
	padding: 0 12px;
}

h1{
	font-size: 30px;
	text-transform: uppercase;
	font-weight: 500;
	margin-top: 55px;
}

a{
	color: #000;
}

a:hover{
	text-decoration: none;
}

.logos{
	display: table;
	margin-top: 45px;
	gap: 35px;
}

.logos .item{
	display: table-cell;
	padding: 0 18px;
}

.logos .item a img{
	max-width: 100%;
}

.text{
	max-width: 632px;
	font-size: 18px;
	margin: 0 auto;
}

@media screen and (min-width: 992px){
	h1{
		font-size: 36px;
		margin-top: 85px;
	}

	.logos{
		margin-top: 80px;
	}
}

