footer select, footer select option, footer button
{
	position: relative;
	display: inline;
	background-color: transparent;
	text-transform: uppercase;
	padding: 5px 10px;
	margin: auto;
	border: 1px solid var(--main-color);
	color: var(--main-color);
}

footer
{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 30px 50px;
	z-index: 10;
}

footer select:hover, footer button:hover
{
	cursor: pointer;
}

footer select
{
	padding: 4px 10px;
}

footer span
{
	padding: 5px 10px;
}

.shape
{
	visibility: hidden;
	pointer-events: none;
	position: absolute;
	filter: drop-shadow(0 0 0.25rem #ffffff);
	bottom: -300svh;
	left: -300svw;
	width: 100px;
	height: 100px;
}

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

#github-info
{
	display: flex;

	font-family: 'Bebas Neue';
	font-size: 1em;
	background-color: var(--background-dark);
	border-radius: 10px;
	padding: 10px;
	transition: 0.5s box-shadow;
}

#github-info:hover
{
	box-shadow: 0px 0px 15px #eba100;
}

#github-info img, #github-info span
{
	margin: 10px;
}

#github-info img
{
	width: 200px;
	height: 200px;
	border-radius: 10px;
	will-change: filter;
	filter: grayscale(1.0);
    transition: 0.5s filter;
}

#github-info img:hover
{
	filter: none;
}

#github-info span
{
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
}

#github-info #title
{
	color: #eba100;
}

#github-info #date, #github-info #message, #github-info #author, #github-info #action
{
	color: var(--light-color);
	font-size: 0.8em;
}

@media (max-width: 600px)
{
	footer
	{
		flex-direction: column;
	}

	#github-info
	{
		flex-direction: column;
		align-items: center;
	}

	footer select
	{
		margin-top: 4px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}

	#github-info
	{
		font-size: 0.8em;
	}

	#github-info #date, #github-info #message, #github-info #author, #github-info #action
	{
		color: var(--light-color);
		font-size: 0.6em;
	}
}

@media (max-width: 300px)
{
	footer button
	{
		margin-top: 4px;
		margin-left: auto;
		margin-right: auto;
		display: block;
	}
}
