*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
html{
	scroll-behavior: smooth;
	
}

body
{
	background-color:#8A2BE2;
}

header
{
background: #FF69B4;
}
header div:nth-child(1)
{
height: 200px;
width: 100%;
display: flex;
justify-content: center;

align-items: center;


color: #cc0000;
text-shadow:2px 2px green;
}
 h1
{
	font-size: 50px;
	text-transform: uppercase;
}
header div:nth-child(3)
{
height: 100px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
font-size: 25px;

}
header div:nth-child(4)
{
height: 100px;
width: 100%;
display: flex;
justify-content: center;
align-items: center;
}
header div:nth-child(4) a button
{
	height: 50px;
	width: 200px;
	background: #33ff77;
	border-radius: 15px;
	font-size: 17px;
	text-transform: capitalize;
	color: #3333ff;
}
header div:nth-child(4) a button:hover
{
	background: #FF00FF;
	color: white;
	font-size: 25px;
	text-transform: uppercase;
	width: 250px;
}

@media only screen and (max-width: 600px){
	h1{
		font-size: 30px;
	}
	header div:nth-child(3)
{

font-size: 18px;

}
header div:nth-child(1)
{
height: 150px;
}

}