#myHeader {
  background-color: lightblue;
  color: black;
  padding: 40px;
  text-align: center;
}
@media (min-width:992px) {
	h1 {
		text-align:center ;
	}
	#p1{
		color:blue;
		width:30%;
		height: 150px;
		
		}
	#p2{
		color:cornsilk;
		width:70%;
	}

}

@media (min-width:768px) and (max-width:991px){
	h1 {
		text-align:center ;
	}
	#p1{
		color:blue;
		width:30%;
		height: 150px;
	}
	#p2{
		color:cornsilk;
		width:70%;
	}

}
@media (max-width:767px){
	#p1{
		color:blue;
		width:30%;
		height: 1500px;
	}
	#p2{
		color:cornsilk;
		width:50%;
	}
}
h1 {
	margin-bottom: 15px;
}
p {
	border:1px solid black;
	margin-bottom: 15px;
	background-color:#A52A2A;
}
#p1 {
	background-color:#A52A2A;
	
}
