:root {
	cursor: url("images/cursors/bumbum.png"), auto;
}

* {
	box-sizing: border-box;
}

body {
	background: #f5f5f5 url(images/background.png);
	font-family: "Pixelify sans", lato, calibri, Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 400;
	text-shadow: 0px 0px 1px #bbb;
	color: #707070;
	letter-spacing: 1px;
	line-height: 13px;
	width: 610px;
	margin: 60px auto;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

a,
button {
	cursor: url("images/cursors/bumbum_pointer.png"), pointer;
}

h1,
h2,
h3,
h4 {
	text-transform: uppercase;
}

h4 {
	margin: 0px;
}

a {
	color: #704f41;
	text-decoration: none;
}

a:hover {
	color: #5687c7;
}

.border {
	border-left: 2px solid #666;
	border-right: 2px solid #aaa;
	border-bottom: 2px solid #928f88;
	border-top: 2px solid #666;
}

#header {
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f5f5f5;
	height: 90px;
	line-height: 90px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

#siteurl {
	color: black;
	background-color: #ffedab;
	padding: 1px 4px;
	letter-spacing: 2px;
}

nav {
	display: flex;
	gap: 4px;
	height: 27px;
}

nav > a {
	color:#f5f5f5;
	background-color: #f5b5cf;
	padding: 5px;
	text-align: center;
	text-transform: uppercase;
	font: 9px arial black, calibri;

	flex-grow: 1;
	flex-basis: 0;

	border-left: 2px solid #666;
	border-right: 2px solid #aaa;
	border-bottom: 2px solid #928f88;
	border-top: 2px solid #666;
}

nav > img {
	max-width: 100%;
	max-height: 100%;
	cursor: url("images/cursors/bumbum_pointer.png"), pointer;
}

footer {
	text-align: center;
}

main {
	display: flex;
	gap: 4px;
}

main > div {
	display: flex;
	flex-direction: column;
	gap: 4px;
	flex-basis: 0;
}

main > #left {
	flex-grow: 1;
}

main > #right {
	flex-grow: 2;
}

.box {
	background-color: #f5f5f5;
}

.box > .title {
	display: flex;
	justify-content: space-between;
	letter-spacing: 3px;
	padding: 3px 4px;
	color: #704f41;
	background: #9bc987 url("images/title_background.jpg");
	font-family: "Arial Black", sans-serif;
}

.box > .title > h4 {
	margin: 0px;
}

.box > .content {
	padding: 4px;
}

.box > .content > *:first-child {
    margin-top: 0px;
}

.box > .content > *:last-child {
    margin-bottom: 0px;
}

.indented {
	text-indent: 10px;
}	

.music audio {
  width: 100%;
}
	
.music {
  display: flex;
  justify-content: center;
  gap: 10px;
    
}

.music > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}


#banana {
	transition-duration: 200ms;
}

#banana:hover {
	scale: 1.5;
}

#me-image {
	display: flex;
	justify-content: center;
}

#bio-badges {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-top: 12px;
}

#bio-badges > img {
	width: fit-content;
}

#updates-box {
	height: 100px;
	overflow-y: auto;
}
