* {
	margin: 0px;
	padding: 0px;
}

a {
	text-decoration: none;
}

.block {
	display: flex;
	justify-content: space-around;	
	align-items: center;
    background: black; 
	border: 1px solid;
}

.imgBlock > img {
	 animation: flipInX;
	animation-duration: 3s;
}

.header {
	border: 1px solid;
}


.headerButtons {
	color: black;
	font-style: serif;
	font-size: 100px;
	border: 10px black;
	display: flex;
	justify-content: space-around;
	height: 100px;
	background-color: black;
	 
}


.headerButtons > div {
	width: 100%;
	height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

}


.headerButtons > div > a {
	color: red;
	width: 100%;
	height: 100%;
	text-align: center
}



html {
	background: rgb(14,97,85);
background: linear-gradient(90deg, rgba(14,97,85,1) 0%, rgba(89,147,62,1) 48%, rgba(255,0,0,1) 94%);
}

.headerButtons > div > a:hover {
	background-color: orange;
	transition: 0.9;

}





