<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
@font-face {
    font-family: 'Rightous'; /*a name to be used later*/
    src: url('medias/Righteous-Regular.ttf'); /*URL to font*/
}

@font-face {
    font-family: 'Lexend'; /*a name to be used later*/
    src: url('medias/Lexend-VariableFont_wght.ttf'); /*URL to font*/
}

@font-face {
    font-family: 'Century Goth'; /*a name to be used later*/
    src: url('medias/centurygothic_bold.ttf'); /*URL to font*/
}

@font-face {
    font-family: "Lexend";
    src: url("https://db.onlinewebfonts.com/t/42dbf00de1681d38477679d3eadad56a.eot");
    src: url("https://db.onlinewebfonts.com/t/42dbf00de1681d38477679d3eadad56a.eot?#iefix")format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/42dbf00de1681d38477679d3eadad56a.woff2")format("woff2"),
    url("https://db.onlinewebfonts.com/t/42dbf00de1681d38477679d3eadad56a.woff")format("woff"),
    url("https://db.onlinewebfonts.com/t/42dbf00de1681d38477679d3eadad56a.ttf")format("truetype"),
    url("https://db.onlinewebfonts.com/t/42dbf00de1681d38477679d3eadad56a.svg#Lexend")format("svg");
}

body {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    h1 {font-family: Rightous;}
    font-family: Lexend;
    ul{list-style-type:none;}
    
}
* {cursor: url(medias/cur.gif),auto;} /*The smiley cur was suppose to be spinnin D: */
/* width */
::-webkit-scrollbar {
  width: 10px;
}

/* Track */
::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #1C1C1C;
  border-radius: 10px;
}
a {color:black;font-weight: bold; cursor:url(medias/cur.png), auto}

a:hover {font-style: italic;text-decoration: none;color:gold;}

#navbar {a {text-decoration: none;} a:hover{padding-left: 10px;font-style:normal; }}

.headbox {
    background-color: gold;
    text-align: center;
    border: 3px outset gold;
    h1{margin:1px;}
}

::-moz-selection { /* Code for Firefox */
  color: gold;
  background: #1C1C1C;
  cursor: url(medias/cur.gif),auto;
}

::selection {
  color: gold;
  background: #1C1C1C;
  cursor: url(medias/cur.gif),auto;
}

/*CHAT BUBBLE*/
.bubble {
    display: inline-block;
    background-color: aliceblue;
    height: auto;
    width:200px;
    border-radius: 10px;
    margin-bottom: -3000px;
    margin-top: -3000px;
}

#b1 {position:relative; top:-4%; left: -121%; padding: 5px; text-align: center;}
#b2 {position:relative; top:-4%; right: -110%; padding: 5px; text-align: center;}

#b1:after {
	content: '';
	position: absolute;
	right: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 36px solid transparent;
	border-left-color: aliceblue;
	border-right: 0;
	border-top: 0;
	margin-top: -18px;
	margin-right: -36px;
}

#b2:after {
	content: '';
	position: absolute;
	left: 0;
	top: 50%;
	width: 0;
	height: 0;
	border: 37px solid transparent;
	border-right-color: #ecf9ff;
	border-left: 0;
	border-top: 0;
	margin-top: -18.5px;
	margin-left: -37px;
}
</pre></body></html>