.AlterHeaderBar
{
	display: flex;
	grid-template-columns: repeat(5, 1fr);

	justify-items: center;
	align-items: center;

	background: url('Assets/Backgrounds/Starry.gif') center;
	padding: 30px 20px 20px;

	width: fit-content;
	margin: -25px auto 0;

	gap: 10px;

	border: saddlebrown 6px solid;
	border-radius: 10px;
}


.AlterButton
{
	display: inline-block;
	position: relative;

	background: var(--passiveBg, grey) center;
	border: 3px solid saddlebrown;
	border-radius: 10px;
	padding: 10px 40px;

	cursor: pointer;
	transition: all 0.3s ease-out;
}

.AlterButton::before
{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	background: var(--activeBg) center no-repeat;
	background-size: cover;
	border-radius: 10px;

	opacity: 0;
	transition: all 0.3s ease-out;
}

.AlterButton .AlterButtonWrapper
{
	display: inline-block;
	transform-origin: center;

	font-size: 26px;
	color: black;

	transition: all 0.3s ease-out;
}


.AlterButton:hover
{
	padding: 20px 60px;
}

.AlterButton:hover::before
{
	opacity: 1;
}

.AlterButton:hover .AlterButtonWrapper
{
	transform: scale(1.5);
	text-shadow: white 1px 1px, white -1px -1px, white 1px -1px, white -1px 1px;
	color: var(--activeTextColor, black);
}



.MainGrid
{
	display: grid;
	grid-template-columns: 1fr 1.5fr 1fr;

	background-color: white;
	padding: 10px;

	border-radius: 10px;
	border-color: black;
}