

body {
	background-image: url("img/bg-lenguage.png");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	margin: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.padre{
	width: 45%;
}
.img-logo{
	width: 500px;
}

.wrap-logo{
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.wrap-flags{
	margin-top: 50px;
	display: flex;
	justify-content: space-between;
}

.url{
	font-family: helvetica;
	font-size: 18px;
	margin: 30px;
	display: block;
	text-decoration: none;
	color: white;
}
.items{
	text-align: center;

}

.items img{
	width: 120px;
	transition: 0.3s;
}
.items img:hover{
	transform: scale(1.1);
}


@media screen and (max-width: 980px){
	.padre{
		width: 60%;

	}
	.img-logo{
		width: 300px;
	}
	.items img{
		width: 90px;
	}
	
}
@media screen and (max-width: 600px){
	.padre{
		width: 90%;

	}
	.img-logo{
		width: 200px;
	}
	.items img{
		width: 70px;
	}
	
}