/*css for first content */
.container{
	font-family: Roboto;
}
.first-content img{
	width: 100%;
	height: auto;
	padding:10px;
}
.first-content{
	display: flex;
    justify-content: center;
    align-items: baseline;
    padding-top: 40px;
}
.first-content div > a{
    display:flex;
    justify-content: center;
}
.butt-link{
	text-align: center;
	background-color: #333439;
	padding: 10px;
	border: none;
}
.butt-link a{
	color: white;
	text-decoration: none;
	font-family: Roboto;
	font-size: xx-large;
}
#antal{
	background-color:#c00;
}
.first-column, .second-column , .third-column{
	display: inline-grid;
    justify-items: stretch;
    padding-right: 20px;
    width: 33%;
}

/* css for second content */
.logo-fb img{
	width: 55px;
	height: auto;
}
.second-content{
	display:flex;
	align-items: center;
	text-align: center;
	justify-content: center;
	padding-top: 90px;
}
.title-cont{
	font-size: x-large;
	line-height: 5px;
	letter-spacing: 3px;
}
.title-cont p{
	font-size: xx-large;
}
.logo-fb{
	margin-left: 55px;
}

/* Responsive */

@media (min-width: 1025px){
	.container{
		max-width: 1400px;
		margin:auto;
}
	.first-content img{
		height: 500px;
	}
	.first-content{
		padding-top:100px;
	}
}

@media (max-width: 1450px){
    .first-content img{
		height: 300px;
		width:auto;
	}
}

@media (max-width: 1024px){
	.first-content img {
    	width: 290px;
    	padding:20px;
    	height: 320px;
	}
	.first-content{
		padding-top: 140px;
	}
	.butt-link a{
		font-size: x-large;
	}
	.butt-link{
		width: 95%;
	}
	.first-column, .second-column , .third-column{
		padding-right:5px;
		display: flex;
		flex-direction: column;
    	align-items: center;
	}
	.title-cont{
		line-height: 1;
	}
	.second-content{
		padding-top: 115px;
	}
}
@media (max-width: 767px){
	.title-cont{
		line-height: 1;
	}
	.logo-fb{
		padding:5px;
		margin-left: 0px;
	}
	.first-content img {
		width: 400px;
		height: auto;
	}
	.first-column, .second-column , .third-column{
		padding-right:0px;
		width: 100%;
	}
	.second-content{
		flex-direction: column;
	}
	.first-content{
		display: grid;
		padding-top: 0px;
	}
}
@media (max-width: 400px){
	.first-content img{
		width: 320px;
	}
	.butt-link a {
    font-size: x-large;
	}
	.first-column, .second-column , .third-column{
		padding-right:0px;
	}
	.second-content{
		flex-direction: column;
		padding-top: 55px;
	}
}

