body{
	display: flex;
	flex-direction: column;	
	min-height: 100vh;
	font-family: Arial, sans-serif;
	margin: 0;
	background-color: #156082;
}

header{
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 40px;
	margin: 10px 0px;
}

header img {
	width: 50px;
	height:50px;
}

main{
	flex:1;
}

main > section{
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 100%;
}

.clickable{
	cursor: pointer;
}

.unactive{
	filter: grayscale(12);
	cursor:default !important;
}