
body{
	background-image: linear-gradient(to bottom right, rgb(169, 104, 152) , rgb(105, 27, 232));
	font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
	height: 100vh;
}

header{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 8rem;
	color: white;
	
}
main{
	display: flex;
	align-items: center;
	justify-content: center;
	color: white;
	width: 100%;
}

.item {
	height: 4rem;
	width: 80vw;
	display: flex;
	align-items: center;
	color: rgb(255, 255, 255);
	padding-left: 3rem;
	border-radius: 2rem;
	background-color: rgb(39, 16, 62);
	background-image: linear-gradient(to bottom right, rgb(31, 10, 59) , rgb(81, 13, 96));
	margin: 1rem;
	transition: transform .2s;
} 

.item:hover {
	transform: scale(1.05); 
}

.item:active {
	background-image: linear-gradient(to bottom right,  rgb(81, 13, 96), rgb(31, 10, 59) );
}

a {
	text-decoration: none;
}