body, html {
	height: 100%;
	margin: 0;
	font-family: sans-serif;
	background-image: url('../media/background.jpg');
	background-size: auto;
	background-attachment: fixed;
	font-size: 1rem;
	background-position: center;
	background-color: rgba(0, 0, 0, 0.1);
}

.custom-content {
	color: rgb(218, 218, 218);
	background-color: rgba(255, 255, 255, 0.2);
	backdrop-filter: blur(1px);
	background-clip: padding-box;
	border: 2px solid rgba(255, 255, 255, 0.35);
	border-radius: 12px;
	padding: 20px;
	text-align: left;
	margin-bottom: 50px;
}

body {
	padding-top: 60px;
}

h1 {
	padding-bottom: 15px;
}

.centered {
	text-align: center !important;
}

footer {
	padding-top: 50px;
}

.navbar {
	background-color: #212529;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.nav-center {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	gap: 2rem;
}

.nav-link {
	color: white !important;
	font-weight: 500;
}

.nav-item {
	white-space: nowrap;
}

.nav-link.active {
	font-weight: bold;
}

.banner {
  width: 100%;
  margin: 0;
}

.banner-img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

form {
	color: white;
	background-color: #5a5a5a;
	padding: 30px;
	border-radius: 8px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	width: 100%;
	max-width: 500px;
	margin: 0 auto;
}

h4 {
	margin-bottom: 20px;
	font-size: 24px;
}

label {
	display: block;
	margin-bottom: 10px;
	font-size: 14px;
}

input[type="radio"], input[type="checkbox"] {
	margin-right: 10px;
}

input[type="text"] {
	text-align: center;
	width: 100%;
	padding: 10px;
	margin-top: 5px;
	margin-bottom: 15px;
	border: 1px solid #ccc;
	border-radius: 4px;
	font-size: 16px;
}

input[type="text"]:focus {
	border-color: #66afe9;
	outline: none;
	box-shadow: 0 0 0 3px rgba(102, 175, 233, 0.3);
}

button {
	padding: 10px 20px;
	font-size: 16px;
	color: #fff;
	background-color: #007bff;
	border: none;
	border-radius: 4px;
	cursor: pointer;
	transition: background-color 0.3s;
}

button[type="reset"] {
	background-color: #dc3545;
}

button:hover {
	background-color: #0056b3;
}

button[type="reset"]:hover {
	background-color: #c82333;
}

textarea {
	width: 100%;
	max-width: 600px;
	min-height: 100px;
	padding: 10px 14px;
	font-size: 1rem;
	font-family: sans-serif;
	color: #333;
	background-color: #f8f9fa;
	border: 1px solid #ccc;
	border-radius: 8px;
	box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.05);
	resize: vertical;
	transition: border-color 0.2s, box-shadow 0.2s;
}

textarea:focus {
	border-color: #66afe9;
	outline: none;
	box-shadow: 0 0 0 3px rgba(102, 175, 233, 0.3);
}

.styled-table {
	border-collapse: collapse;
	width: 60%;
	margin: 20px auto;
	font-family: Arial, sans-serif;
	font-size: 1rem;
}

.styled-table th,
.styled-table td {
	border: 1px solid #ccc;
	padding: 10px 16px;
	text-align: center;
}

.styled-table th {
	background-color: #5a5a5a;
	font-weight: bold;
}

a, a:link, a:hover {
	color: rgb(255, 255, 255);
}

a:visited {
	color: rgb(216, 216, 216);
}

.skip-link {
	position: absolute;
	top: -40px;
	left: 0;
	background: #000;
	color: #fff;
	padding: 8px;
	z-index: 100;
}

.skip-link:focus {
	top: 0;
}

.gametag {
	font-family: 'Times New Roman', Times, serif
}

.carousel-img {
	max-height: 400px; 
	object-fit: scale-down;
}

.carousel-button:hover {
	background-color: #333;
}

caption {
	color: rgb(218, 218, 218) !important;
}