html {
	line-height: 1;
}

body {
	background: rgb(33, 97, 97);
	background: linear-gradient(
		146deg,
		rgba(33, 97, 97, 1) 27%,
		rgba(19, 29, 78, 1) 100%
	);

	background-repeat: no-repeat;
	background-attachment: fixed;

	margin: 0;
	padding: 0;
}

.centered-container {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.fixed-container {
	height: 6rem;
}

.fixed-content {
	float: center;
	position: fixed;
}

.navbar {
	width: 100%;
	min-height: 2.5rem;

	display: flex;
	justify-content: space-between;
	align-items: center;

	padding: 0.4rem 0;

	color: whitesmoke;
	background-color: rgb(2, 0, 36);

	z-index: 2;
}

.nav-section {
	width: 18rem;
	font-size: 1.2rem;
}

.nav-centered {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
}

.navbar button {
	width: 7rem;
	font-size: 0.8rem;
}

.nav-section:first-of-type {
	margin-left: 0.3rem;
}

.nav-section.links a {
	box-sizing: border-box;
	max-height: 2.5rem;
	padding: 0.3em;
	width: 6em;
	color: whitesmoke;
	font-weight: 500;
	text-decoration: none;
	white-space: nowrap;
}

.nav-section.links a:hover {
	background-color: rgba(13, 165, 241, 0.277);
	border-radius: 1em;
}

.fade-button {
	opacity: 85%;
}

#info {
	margin: 0;
	padding: 0;
	color: white;

	border-radius: 50%;
}

#info.win {
	animation: pulse-animation-win 2s ease-out;
}

#info.tie {
	animation: pulse-animation-tie 1.5s ease-out;
}

@keyframes pulse-animation-tie {
	0% {
		box-shadow: 0 0 0 0px rgba(200, 200, 200, 0.2);
		background: rgba(200, 200, 200, 0.2);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(200, 200, 200, 0);
	}
}
@keyframes pulse-animation-win {
	0% {
		box-shadow: 0 0 0 0px rgba(0, 128, 0, 0.7);
		background: rgba(0, 128, 0, 0.7);
	}
	100% {
		box-shadow: 0 0 0 20px rgba(0, 128, 0, 0);
	}
}

.zoom-control {
	font-size: 0.8rem;
	margin-top: 0.2rem;
}

.zoom-btn {
	width: min-content !important;
	margin: 0 0.2em;
	color: white;
	background-color: #ffffff1d;
}

.zoom-btn[disabled] {
	color: gray;
	opacity: 75%;
	cursor: default !important;
}

.zoom-btn:hover:not(.zoom-btn:hover[disabled]),
.zoom-btn:focus:not(.zoom-btn:focus[disabled]) {
	background-color: #ffffff30;
}

.zoom-btn:active:not(.zoom-btn:active[disabled]) {
	background-color: #ffffff6c;
}

#zoom-in {
	cursor: zoom-in;
}
#zoom-out {
	cursor: zoom-out;
}

.button {
	cursor: pointer;
}

@media (max-width: 900px) {
	.nav-section:last-of-type {
		display: flex;
		justify-content: center;
		align-items: center;
	}
}


@media (max-width: 750px) {
	.nav-section {
		font-size: 1rem;
	}
	.nav-section.links .holder {
		width: min-content;
	}

	.nav-section.links a {
		padding: 0 0.3em;
	}
}