:root {
	/* whole page */
	--text-font: '8bitoperator JVE';
	--heading-font: '8bitoperator JVE';
	--text-size: 1.25em;
	--background-img: url("../img/background.png");
	--background-color: black;
	--gap-size: 0.5em;
	
	/* header */
	--header-img: url("../img/header.png");
	--header-border: white;
	--header-height: 7.5em;
	
	/* nav */
	--nav-border: white;
	--nav-buttons: #007DDF;
	--nav-buttons-alt: #007DDF;
	--nav-text: white;
	
	/* player */
	--player-border: white;
	--player-color: black;
	--song-color: black;
	--player-text: white;
	
	/* decor */
	--decor-border: white;
	--decor-background: none; /* for using a background image instead of a solid color. */
	--decor-color: black;
	--decor-rendering: pixelated; /* I'm usually putting pixel art in here, so this is the default. change it to smooth for stamps. */
	--decor-height: 100%; /* this is 100% by default, but change it if there's wider stuff that needs squeezed in. there's probably an easier way to do this. */
	
	/* main */
	--main-border: white;
	--main-color: black;
	--main-text: white;
	--heading-text: #F7FF00;
	--link-text: #42E2FF;
	
	/* footer */
	--footer-color: #007DDF;
	
	/* assets */
	--floater-width: 9em;
	--floater-animation: float 1.5s linear infinite;
}

@font-face {
	font-family: "8bitoperator JVE";
	src: url('../fonts/8bitOperatorPlus-Bold.woff');
}

html {
	background-image: var(--background-img);
	image-rendering: pixelated;
}

body {
	image-rendering: smooth;
}

header {
	background-image: var(--header-img);
	image-rendering: smooth;
}

.dropdown-button, .nav-link {
	font-weight: normal;
}

.nav-link {
	padding-top: 5px;
}

h1, h2, h3, h4, h5, h6, a, b {
	font-weight: normal;
}

b {
	color: var(--heading-text);
}

/* deltarune textboxes */

/* these might be useful for other people, so you're free to adapt this code for your own site! you might need to tweak it depending on your page width, though. */
/* if you do use this, credit in this case is appreciated but not necessary :] */

.textbox {
	border: 25px solid transparent;
	image-rendering: pixelated;
	background-color: black;
	width: 85%;
	margin: auto;
	margin-bottom: 10px;
}

.textbox-dw {
	border-image: url('../img/deltaborder.png') 13 round;
}

.textbox-lw {
	border: 5px solid white;
	padding: 10px;
}

.textbox.textbox-lw p {
	font-size: 20px;
}

.textbox p {
	margin-bottom: 0;
	margin-left: 5px;
	margin-top: 5px;
	padding-left: 30px;
	padding-bottom: 5px;
	text-indent: -25px;
	font-size: 20px;
	line-height: 35px;
}

.dialogue {
	display: grid;
	grid-template-columns: 15% 85%;
	padding: 10px;
}

.dialogue p {
	margin: 0 0 0 10px;
}

.dialogue img {
	width: 100%;
	padding-top: 5px;
}

@media only screen and (max-width: 575px) {
	.textbox {
		width: 100%;
	}
	.dialogue {
		padding: 10px;
		grid-template-columns: 20% 80%;
	}
}

@media only screen and (max-width: 450px) {
	.dialogue {
		padding-bottom: 5px;
		padding-right: 0;
	}
	.textbox p {
		text-indent: -20px;
		font-size: 16px;
		line-height: 28px;
		margin-left: 0;
	}
	.dialogue p {
		margin-left: 0;
	}
}