/* font import */

@font-face {
  font-family: Alagard; 
  src: url(../font/alagard.ttf);
}

@font-face {
	font-family: Courier;
	src: url(../font/CourierStandardBold.otf);
}

/* text */

h1 { 
	font-family: Courier;
	color: #ff7607;
	font-size: 3em;
	margin: 0;
}

p {
	font-family: Courier;
	color: #ff7607;
	font-size: 1.5em;
}

ul {
	list-style-type: square;
	list-style-position: inside;
	color: #ff7607;
}

li {
	font-family: Courier;
	color: #ff7607;
	font-size: 1em;
}

.thought p {
	color: black;
}

#navbar a {
	color: white;
	margin: 0;
	text-decoration: none;
	font-family: Courier;
	font-size: 2em;
}

#navbar a:hover {
	color: #ff7607;
	margin: 0;
	text-decoration: none;
	font-family: Courier;
	font-size: 2em;
}

.box h1 {
	text-align: center;
	margin: 0;
}

/* div */

#navbar {
	display: flex;
	list-style-type: none;
	margin: 0;
	padding: 0;
	background-color: black;
	width: 100%;
	justify-content: space-evenly;
	position: sticky;
	top: 0;
}

.page {
	background-color: white;
	width: 65%;
	max-height: 85%;
	margin: auto;
	margin-top: 15px;
	display: flex;
	flex-direction: column;
	padding: 15px;
	border: groove;
	border-color: #ff7607;
	gap: 15px;
	overflow-y: auto;
}

.row {
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	height: auto;
}

.column {
	display: flex;
	flex-direction: column;
}

.box {
	background-color: white;
	border: groove;
	border-color: #ff7607;
	padding: 15px;
	width: 25%;
	height: 30%;
	overflow-y: auto;
}

.divider {
	display: flex;
	flex-direction: row;
}

.thought {
	background-color: #ff7607;
	max-height: 300px;
	overflow-x: hidden;
	overflow-y: auto;
	margin-top: 5px;
	margin-bottom: 5px;
	border: solid;
	border-color: black;
}

.graphicsbox {
	background-color: white;
	border: groove;
	border-color: #ff7607;
	padding: 15px;
	width: 350px;
	height: 150px;
	overflow: hidden;
	text-align: center;
}


#mp3box {
	height: 350px;
	width: 30%;
	overflow-x: hidden;
	background-color: white;
	display: flex;
	justify-content: center;
	align-items: center;
}

#spritebox {
	background-color: white;
	border: groove;
	border-color: #ff7607;
	width: 25%;
	height: auto;
	padding: 0;
	position: relative;
}

#headerbox {
	background-color: white;
	padding: 0;
	width: 25%;
	height: auto;
	text-align: center;
}

#blinkies {
	width: 325px;
	display: flex;
	flex-wrap: wrap;
	height: 100px;
	overflow-x: hidden;

}

#thoughtbox {
	background-color: white;
	border: groove;
	border-color: #ff7607;
	overflow-y: scroll;
	width: 25%;
	height: 450px;
}

/* img */

#spritebox img {
	width: 100%;
	position: absolute;
	bottom: 0;
}

#blinkies img {
	width: 150px;
}

.divider img {
	flex: 25%;
}

/* misc */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	padding: 0;
	margin: 0;
	background-image: url('../media/floydbg.gif');
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

#mp3player {
	height: 300px;
	overflow: hidden;
	overflow-x: hidden;
	width: 100%;
	border: none;
}

.draggable {
    position: absolute;
	bottom: 15px;
	left: 15px;
    cursor: grab;
    text-align: center;
    user-select: none;
}

.draggable.dragging {
    cursor: grabbing;
}