:root {
	--text: #000000;
	--border: #000000;
	--accent: #000000;
	--bg: #d2d2d2;
	--gradientTop: #ffffff;
	--gradientBottom: rgb(240, 248, 255, 0.8);
}
header {
	background: url("https://i.pinimg.com/1200x/8d/9c/29/8d9c29ec1f671bc75bf303049b6f6828.jpg");
}

* {
	box-sizing: border-box;
}
body {
	padding: 10px;
    font-family: "MS Gothic", "sans-serif";
	color: black;
	overflow-y: scroll;
	display: hidden;

	/* page background pattern */
	background-image: url("https://i.pinimg.com/736x/21/71/ba/2171ba6b932b9f560a7b64709dcdf8d5.jpg");
}

/* Hide scrollbar for Chrome, Safari and Opera */
.container::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.container {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

.container {
	max-width: 55rem;
	margin: 5vw auto 12px auto;
	border: 6px ridge;
	outline: 3px solid var(--gradientTop);
	outline-offset: 4px;
	border-radius: 10px;
	display: flex;
	flex-wrap: wrap;
	padding: 5px;
	gap: 5px;
	text-align: left;
	overflow-y: scroll;

	/* container background pattern */
	background-color: var(--gradientBottom);
	background-image: repeating-radial-gradient(circle at 0 0, transparent 0, var(--gradientBottom) 9px),
		repeating-linear-gradient(var(--bg), var(--bg));
}
/* Hide scrollbar for Chrome, Safari and Opera */
.small::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.small {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

/* these control the column widths */
.small {
	flex: 1 1 9%;
}

.large::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.large {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

.large {
	flex: 1 1 82%;
}

.full::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.full {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}
.full {
	flex: 1 1 100%;
}

.half::-webkit-scrollbar {
	display: none;
}

/* Hide scrollbar for IE, Edge and Firefox */
.half {
	-ms-overflow-style: none; /* IE and Edge */
	scrollbar-width: none; /* Firefox */
}

.half {
	flex: 1 1 49%;
}

header {
	background-size: cover;
	background-position: center;
	width: 100%;
	height: 120px; /* change banner height here*/
	border: 2px ridge var(--border);
	border-radius: 5px;
	position: relative;
	cursor: url("https://i.postimg.cc/rw1krs6P/download-1-removebg-preview.png"), auto;
}
header span {
	font-size: 2.5rem;
	position: absolute;
	bottom: 0;
	right: 10px;
	margin: 10px;
	font-weight: bold;
	text-shadow:
		1px 1px var(--text),
		-1px 1px var(--text),
		1px -1px var(--accent),
		-1px -1px var(--accent);
	color: var(--gradientTop);
}

nav {
	border: 2px ridge var(--border);
	border-radius: 5px;
	padding: 5px;
	background: linear-gradient(var(--gradientTop), var(--gradientBottom));
}
nav div {
	text-align: center;
	font-size: 1.25rem;
	margin: 5px 5px 10px 5px;
}
nav a {
	display: block;
	margin: 5px;
	background: linear-gradient(to right, var(--bg), var(--gradientBottom));
	border-radius: 5px;
	padding: 2px 7px;
	text-decoration: none;
}
nav a:link,
nav a:visited {
	color: black;
}
nav a:hover,
nav a:focus {
	background-color: black;
}

/* optional button styling like in the preview */
div.small > img {
	display: block;
	margin: 5px auto;
	border: 2px ridge var(--border);
	border-radius: 5px;
}

section {
	border: 2px ridge var(--border);
	border-radius: 5px;
	background: linear-gradient(var(--gradientTop), var(--gradientBottom));
	padding: 5px;
	text-align: center;
	overflow-y: scroll;
	height: 450px;
}

footer {
	text-align: center;
	color: aliceblue;
	margin-bottom: 5vw;
	font-size: 0.8rem;
}
footer a {
	text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
	margin: 5px;
	line-height: 1.2;
}
h1 {
	font-family: "MS Gothic", sans-serif;
	font-size: 1.4rem;
	letter-spacing: 2px;
	font-weight: normal;
	text-align: center;
	border-bottom: 2px ridge var(--border);
	padding-bottom: 5px;
}
h2 {
	font-family: "MS Gothic", sans-serif;
	font-size: 1.25rem;
	font-weight: normal;
	text-align: center;
}
h3 {
	font-family: "MS Gothic", sans-serif;
	font-size: 1.1rem;
}
h4 {
	font-family: "MS Gothic", sans-serif;
	font-size: 1rem;
	color: var(--accent);
	padding-left: 12px;
}

/* prevents overflow on smaller screens */
img {
	max-width: 100%;
}
pre {
	overflow-x: auto;
}

a {
    
	font-style: normal;
	color: #000000;
}

a:visited {
	font-style: normal;
	color: #0d0d0d;
}

a:hover,
a:focus {
	font-style: italic;
	color: #000000;
}

.accordion {
	background-color: #ffffff;
	cursor: pointer;
	padding: 18px;
	width: 100%;
	border: none;
	text-align: left;
	outline: none;
	font-size: 15px;
	transition: 0.4s;
	font-family: "MS Gothic", sans-serif;
	padding-left: 12px;
}

.active,
.accordion:hover {
	background-color: #000000;
	font-family: "MS Gothic", sans-serif;
	color: white;
}

.panel {
	padding: 0 18px;
	display: none;
	background-color: white;
	overflow: hidden;
}

@font-face {
	font-family: "Stamp";
	src: url("/fonts/Stamptypo.ttf") format("truetype");
}

.stamp-text {
	font-family: "Stamp";
	font-size: 4rem;
}

@font-face {
	font-family: "AppleG";
	src: url("/fonts/apple-gar-light.ttf") format("truetype");
}

.noble-text {
  font-family: "AppleG";
  font-size: 2rem;
}
