body{
	background-color: wheat;
}

marquee{
	color:red;
	background-color:white;
	font-size:115%;
}

.header{
	background-color: blue;	
}

.title1{
	color:red;
	font-size: 30px;
}

.title2{
	color:white;
	font-size:50px;
}

.container{
	border-style:solid;
	margin: 10px 10px;
	padding: 10px 10px;
	border-radius:20px;
	font-size:4px;
	transition: border-color, background-color,color,font-size 0.3s, ease;
}
.container h1{
	font-size:1000%;
	transition: font-size, 0.3s, ease; 
}

.container:hover h1{
	font-size:100%;
	transition: font-size, 0.3s, ease; 
}

.container:hover{
	border-color:white;
	background-color: black;
	color:white;
	font-size:100%;
	transition: border-color, background-color,color,font-size 0.3s, ease;
}