@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,200;0,300;0,400;1,200;1,300&display=swap');
*{
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

body{
	
	font-family: 'Poppins', sans-serif;
}

.blue-bar{
	background-image: url('./blue1.jpg');
	width: 80%;
	margin: auto;
	height: 600px;
	color: white;
	background-size: cover;
	position: relative;
	padding: 50px 50px;
	border-radius: 50px;
}

.blue-bar p{
	position: absolute;
	left: 0%;
	top: 50%;
	transform: translate(-0%,-50%);
	padding: 50px 50px;
	font-size: 22px;
	font-weight: 500;
}

@media only screen and (max-width: 992px) {
.blue-bar{

	width: 100%;
	padding: 10px 10px;
	height: 100vh;

}
}