/* callum fisher - 2025.11.24 */

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@keyframes fadeOut {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

@keyframes icy {
	0% {
		background: rgb(240, 240, 240); /* light icy white */
		box-shadow: 0 0 40px rgba(180, 210, 255, 0.6)
	}
	50% {
		background: rgb(180, 210, 255); /* soft icy blue */
		
	}
	100% {
		background: rgb(240, 240, 240); /* light icy white */
		box-shadow: 0 0 40px rgba(180, 210, 255, 0.6)
	}
}

@keyframes flashy {
	0% {
		background: violet; /* light icy white */
		box-shadow: 0 0 10px violet;
	}
	50% {
		background: plum; /* soft icy blue */
		box-shadow: 0 0 10px plum;
		
	}
	100% {
		background: violet; /* light icy white */
		box-shadow: 0 0 10px violet;
	}
}

body {
	color: #fff;
	background: #000;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

main {
	box-sizing: border-box;
	display: grid;
	/* gap: .5rem; */
	padding-top: .5rem;
	padding-bottom: .5rem;
	padding-left: 24%; /* 10vw */
	padding-right: 24%;
}

h1 {
	background: #000;
	text-shadow: 0px 0px 14px #fff;
}

.navbar {
	background: #000;
	box-shadow: 0px 0px 24px #fff;
}

.center {
	text-align: center;
}

nav[aria-label="breadcrumbs"] {
	display: flex;
	flex-wrap: wrap;
	padding-left: 24%;
	padding-right: 24%;
}

nav[aria-label="breadcrumbs"] ol {
	display: flex;
	flex-wrap: wrap;
	list-style: none;
	padding: 0;
	margin: 0;
}

nav[aria-label="breadcrumbs"] li + li::before {
	content: " / ";
	padding: 0 0.25em;
	color: #888;
}

.box {
	background: #000;
	color: #fff;
	word-wrap: break-word;
	overflow: hidden;
	padding: 2rem;
	box-sizing: border-box;
}

.box.center {
	text-align: center;
}

img {
	padding: 1rem;
	max-width: 100%;
	display: block;
	margin-left: auto;
	margin-right: auto;
	box-sizing: border-box;
}

figure {
	display: block;
	text-align: center;
	margin: 0 auto;
	max-width: 100%;
}

body a:not(.button) {
	color: #f5deb3;
}

body a:not(.button):visited {
	color: #bfa8ad;
}

body a:not(.button):hover {
	color: #bfa8ad;
}

button {
	color: #000;
	background: #d4efff;
	display: inline-block; /* sit next to each other */
	margin: 0.5rem; /* Space between buttons */
	padding: 0.6rem; /* space within button */
	text-align: center;
	user-select: none;
	width: auto;
	max-width: none;
    margin-right: 10px;
	margin-bottom: 10px;
	border-style: none;
	border-radius: 5px;
	font-family: Verdana, Geneva, Tahoma, sans-serif;
}

button:hover {
	animation: none !important;
	color: #fff;
	background: #000;
}

.button.inactive {
	color: #808080;
	text-decoration: line-through;
	cursor: not-allowed;
}

.button.inactive:hover {
	background: #a18f78;
	color: #faf7f0;
}

.button.secondary {
	float: right;
}

.button.selectable {
	-moz-user-select: -moz-all;
	-khtml-user-select: all;
	-webkit-user-select: all;
	-ms-user-select: all;
	user-select: all;
}

:not(nav) > ol li {
	padding-top: .2rem;
	padding-bottom: .2rem;
}

:not(nav) > ul li {
	padding-top: .2rem;
	padding-bottom: .2rem;
	list-style: square;
}

footer {
	text-align: center;
}

.byline {
	font-style: italic;
}

.byline .author {
	color:gray;
	font-weight: bold;
}

@media screen and (max-width: 1200px) { /* 1400px */
	body {
		margin-left: 0;
		margin-right: 0;
	}
	nav[aria-label="breadcrumbs"] {
		padding-left: 0;
		padding-right: 0;
		margin-left: 1%;
		margin-right: 1%;
	}
	main {
		padding-left: 0;
		padding-right: 0;
		gap: 0;
	}
	.box {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}