
:root {
	--color: #30b8e0;
}

body {
	font-family: 'Quicksand', sans-serif;
	font-family: 'Roboto', sans-serif;

	margin: 8px;
	height: calc(100vh - 16px);


	text-align: center;
	font-size: 16px;

	display: flex;
	flex-direction: column;
	align-items: center;
}

a {
	text-decoration: none;
	color: white;
}

ul {
	padding: 0;
}

li {
	list-style-type: none;
	font-size: 20px;
	margin: 24px 0;
}

li a {
	background-color: var(--color);
	padding: 4px 14px;
	border-radius: 8px;
	transition: 200ms ease;
}

li a:hover {
	background-image: linear-gradient(90deg, #00C0FF 0%, #FFCF00 49%, #FC4F4F 80%, #00C0FF 100%);
	animation: slidebg 2.5s linear infinite;
	padding: 4px 24px;
}

li svg {
	fill: white;
	height: 100%;
	vertical-align: middle;
	padding-bottom: 3.5px;
}

main {
	display: flex;
	flex-direction: column;
	flex-grow: 1;
	margin-top: 64px;
}

#about {
	padding: 0 8px;
}

#links {
	padding: 8px;
	flex-grow: 1;
}

footer {
	display: flex;
	gap: 1rem;
}

footer svg {
	width: 24px;
	height: 24px;
}

footer svg:hover {
	fill: var(--color);
}

@keyframes slidebg {
	to {
		background-position: 20vw;
	}
}
