body {
	margin: 32px;
}

header {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.logo-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 128px;
	height: 128px;
	background-color: black;
	border-radius: 0;
	transition: border-radius 0.25s;
}

.logo-btn:hover {
	border-radius: 128px;
}

.logo-btn img {
	width: 75%;
	height: auto;
}

.logo-btn:active img {
	transform: scale(0.9);
}

/*header nav ul {
	list-style: none;
}
*/

main {
	display: flex; 
	justify-content: center; 
	align-items: center; 
	padding: 48px 0px;
}



footer nav {
	display: flex;
	justify-content: center;
	align-items: center;
}

footer nav a {
	margin: 0 12px;
}

footer nav a:hover img {
	transform: scale(1.15);
}


footer span {
	display: flex;
	justify-content: center;
	align-items: center;
	font-size: smaller;
}

