body {
	font-family: "Minecraft";
	background-color: var(--background-color);
	color: var(--text-color);
}

::-webkit-scrollbar {
	width: 10px;
  }
  
  /* Track */
  ::-webkit-scrollbar-track {
	background: var(--scrollbar-background-color);
  }
  
  /* Handle */
  ::-webkit-scrollbar-thumb {
	background: var(--scrollbar-color);
  }
  
  /* Handle on hover */
  ::-webkit-scrollbar-thumb:hover {
	background: var(--scrollbar-color-hover);
  }

.main-content {
	display: none;
}
.loader-wrapper {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	
}

.loader__text {
	margin-top: 10px;
	text-align: center;
}

.hero {
	width: 100%;
	height: calc(100vh);
	background: linear-gradient(to bottom, rgba(52, 152, 219, 0) 30%, var(--background-color) 100%), url("../assets/img/background.png") top center;
	
	background-size: cover;
	position: relative;
  }
.hero:before {
	content: "";
	position: absolute;
	bottom: 0;
	top: 0;
	left: 0;
	right: 0;
}

.nav-brand {
	color: #55FF55;
	font-size: 24px;
	margin-left: 8px;
}

.nav-brand:hover, .nav-brand:focus {
	color: var(--main-color-dark)
}

.nav-text {
	color: white;
	font-size: 24px;
	margin-left: 8px;
}

.nav-text:hover, .nav-text:focus {
	color: var(--text-color-alt-hover)
}

.rules {
	margin-top: 5%;
}

.rules__header, .rules__decription {
	text-align: center;
}

.tabbed {
	margin-left: 16px;
}

.rules__category {
	text-align: center;
	margin-top: 24px;
}

.navbar-toggler, .navbar-toggler-icon {
	color: white;
}

.warning {
	padding: 1px 10px 5px;
	margin-bottom: 1rem;
	border-left: solid 7px #aa0000;
	border-radius: 6px;
	background-color: rgba(170, 0, 0, 0.05);
}

.warning__header {
	margin-bottom: 0.5rem;
	font-size: 20px;
}

.warning__body {
	margin-bottom: 0;
}

.explanation {
	padding: 1px 10px 5px;
	margin-bottom: 1rem;
	border-left: solid 7px #0000cc;
	border-radius: 6px;
	background-color: rgba(0, 0, 170, 0.05);
}

.explanation__header {
	margin-bottom: 0.5rem;
	font-size: 20px;
}

.explanation__body {
	margin-bottom: 0;
}

@media only screen and (min-width: 600px) {
	.rules {
		max-width: 70%;
	}
}
@media only screen and (min-width: 601px) and (max-width: 1200px) {
	.rules {
		max-width: 90%;
	}
}

@media only screen and (max-width: 767px) {
	nav {
		background-color: #141212;
	}
	.rules {
		margin-top: 17.5%;
	}
}