/* font import */

@font-face {
  font-family: Alagard; 
  src: url(../font/alagard.ttf);
}

@font-face {
	font-family: Acidic;
	src: url(../font/Acidic.TTF);
}

@font-face {
	font-family: DaisyWheel;
	src: url(../font/daisywhl.otf);
}

/* text */

#navbar a {
	color: white;
	margin: 0;
	text-decoration: none;
	font-family: Acidic;
	font-size: 2em;
}

#navbar a:hover {
	color: #5e0d0a;
	margin: 0;
	text-decoration: none;
	font-family: Acidic;
	font-size: 2em;
}

h1 {
	font-family: Acidic;
	color: white;
}

h2 {
	font-family: Acidic;
	color: white;
}

p {
	font-family: DaisyWheel;
	color: white;
}

ul {
	list-style-type: square;
	list-style-position: inside;
	color: white;
}

li {
	font-family: DaisyWheel;
	color: white;
	font-size: 1em;
}

.headertext h1 {
	font-family: Acidic;
	color: #5e0d0a;
	background-color: black;
}

/* 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 {
	width: 65%;
	height: 65%;
	margin: auto;
	margin-top: 15px;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
	padding: 65px;
	gap: 15px;
	overflow-y: auto;
	border-width: 10px;
	border-image-source: url("../media/tvborder.png");
	border-image-slice: 120 120 120 120;
	border-image-width: 50px 50px 50px 50px;
	border-image-outset: 0px 0px 0px 0px;
	border-image-repeat: stretch stretch;
	background: linear-gradient(to top, #000000, #000000, #333333, #333333);
	background-size: cover;
	background-size: 100% 3px;
	animation: scanlines infinite 10s linear;
}

.column {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	width: 30%;
	height: 100%;
}

.box {
	width: 100%;
	max-height: 45%;
	border: double;
	border-color: white;
	padding: 5px;
	overflow-y: auto;
}

.headerbg {
	z-index: 1;
	position: relative;
	width: 100%;
	height: 25%;
	background-image: url('../media/maestroface.png'); 
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center;
	-webkit-mask-image: url(https://files.catbox.moe/eb1xqu.png);
	-webkit-mask-size: 100%;
	-webkit-mask-repeat: no-repeat;
	-webkit-mask-position: center;
	margin: auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.headertext {
	z-index: 2;
	margin: auto;
	text-align: center;
	position: relative;
}

.microblog {
	background-color: black;
	width: 90%;
	margin: auto;
	height: auto;
	padding: 10px;
	margin-bottom: 5px;
}

#blinkies {
	width: 325px;
	display: flex;
	flex-wrap: wrap;
	overflow-x: hidden;
	margin: auto;
}

/* img */

.draggable img {
	height: 500px;
	width: auto;
}

#blinkies img {
	width: 150px;
}

/* misc */

html {
	height: 100%;
	margin: 0;
	padding: 0;
}

body {
	height: 100%;
	padding: 0;
	margin: 0;
	background-image: url('../media/homepagebgsmall.gif'); 
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-size: cover;
}

@keyframes scanlines {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 0 -25px;
  }
}

.draggable {
    position: absolute;
	bottom: 15px;
	left: 15px;
    cursor: grab;
    text-align: center;
    user-select: none;
}

.draggable.dragging {
    cursor: grabbing;
}

#maestro1 {
	
}