:root {
  --header-image: url('/images/banner2.png');
  --body-bg-image: url('https://file.garden/ZdfoEKiNkhzINRFn/skulls1.gif');
  /* colors */
  --content: #43256E;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Regular.ttf');
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Bold.ttf');
    font-weight: bold;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-Italic.ttf');
    font-style: italic;
}

@font-face {
    font-family: Nunito;
    src: url('https://sadhost.neocities.org/fonts/Nunito-BoldItalic.ttf');
    font-style: italic;
    font-weight: bold;
}

@font-face {
    font-family: VT323;
    src: url('https://file.garden/ZdfoEKiNkhzINRFn/VT323-Regular.ttf');
}

body {
    font-family: 'Nunito', sans-serif;
    margin: 0;
    background-color: #000000;
    /* you can delete the line below if you'd prefer to not use an image */
    background-size: 100px;
    color: #fcf8f4;
    /* background-image: var(--body-bg-image); */
}

html {
  height: 100%;
}

* {
  margin: 0;
  padding: 0;
}

p {
  padding: 0 0 20px 0;
  line-height: 1.7em;
}

img { 
  border: 0;
}

h1, h2, h3, h4, h5, h6 {
  font: normal 175%;
  color: #d20000;
  margin: 0 0 15px 0;
  padding: 15px 0 5px 0;
}

h1.MainHeader {
  font-family: 'VT323', monospace;
  text-align: center;
  font-size: 70px;
}

h2 {
  font: normal 175%;
}

h2.ExecutionHeader {
  font-family: 'VT323', monospace;
  text-align: center;
  font-size: 40px;
}

h4, h5, h6 {
  margin: 0;
  padding: 0 0 5px 0;
  font: normal 120%;
}

h5, h6 {
  font: italic 95%;
  padding: 0 0 15px 0;
}

a, a:hover { 
  outline: none;
  text-decoration: underline;
  color: #F2F0EF;
}

a:hover { 
  text-decoration: none;
}

.left { 
  float: left;
  width: auto;
  margin-right: 10px;
}

.right { 
  float: right; 
  width: auto;
  margin-left: 10px;
}

.center { 
  display: block;
  text-align: center;
  margin: 20px auto;
}

blockquote { 
  margin: 20px 0; 
  padding: 10px 20px 0 20px;
  border: 1px solid #E5E5DB;
  background: #F2F0EF;
}

ul { 
  margin: 2px 0 22px 17px;
}

ul li { 
  list-style-type: circle;
  margin: 0 0 6px 0; 
  padding: 0 0 4px 5px;
}

ol { 
  margin: 8px 0 22px 20px;
}

ol li { 
  margin: 0 0 11px 0;
}

#main {
  max-width: 1000px;
  margin: 0 auto
}

#logo, #site_content, #footer{
  margin-left: auto; 
  margin-right: auto;
}

#menubar {
  margin-left: auto;
  margin-right: auto;
  border-style: double;
  border-color: #F2F0EF;
}

#header { 
  background: transparent;
  height: auto;
  width: 100%;
  background-color: #000000;
  /* header color here! */
  /* this is only for a background image! */
  /* if you want to put images IN the header, 
  you can add them directly to the <div id="header"></div> element! */
  background-image: var(--header-image);
  background-size: 100%;
  background-size: cover; /* Make the background image cover the entire area */
  height: auto; /* Allow the header div to adjust its height based on content */
}

#header img {
width: 100%;
height: auto;
}

#logo { 
  width: 898px;
  position: relative;
  height: 148px;
}

#logo #logo_text { 
  position: absolute; 
  top: 20px;
  left: 0;
}

#logo h1, #logo h2 { 
  font: normal 300% 'century gothic', arial, sans-serif;
  border-bottom: 0;
  text-transform: none;
  margin: 0;
}

#logo_text h1, #logo_text h1 a, #logo_text h1 a:hover { 
  padding: 22px 0 0 0;
  color: #000;
  letter-spacing: -1px;
  text-decoration: none;
}

#logo_text h1 a .logo_colour { 
  color: #FA057E;
}

#logo_text h1 a .logo_colour2 { 
  color: #f5f5f5;
}

#logo_text h2 { 
  font-size: 100%;
  padding: 4px 0 0 0;
  color: #000;
}

#menubar { 
  width: 898px;
  height: 52px;
  padding: 0;
  background: #000;
} 

ul#menu, ul#menu li {
  display: flex;
  justify-content: space-evenly;
  margin: 0; 
  padding: 0;
}

ul#menu li { 
  list-style: none;
}

ul#menu li a { 
  letter-spacing: 0.1em;
  font: normal 100% arial, sans-serif;
  display: block; 
  float: left; 
  height: 17px;
  margin: 10px 0 0 10px;
  padding: 9px 26px 6px 26px;
  text-align: center;
  color: #F2F0EF;
  text-transform: uppercase;
  text-decoration: none;
  background: transparent;
} 

ul#menu li a:hover, ul#menu li.selected a, ul#menu li.selected a:hover { 
  color: #000000;
  background: #d20000;
}

#navbar {
    /* navbar color */
    width: 100%;
}

#navbar ul {
    display: flex;
    padding: 0;
    margin: 0;
    list-style-type: none;
    justify-content: space-evenly;
}


#site_content { 
  display: flex;
  justify-content: space-evenly;
  width: 854px;
  overflow: hidden;
  margin: 0 auto 0 auto;
  padding: 0 24px 20px 20px;
  background: #000;
  border-style: double;
  border-color: #F2F0EF;
} 

.sidebar { 
  float: left;
  width: 210px;
  padding: 0 15px 20px 15px;
}

.sidebar ul { 
  width: 198px; 
  padding: 4px 0 0 0; 
  margin: 4px 0 30px 0;
}

.sidebar li { 
  list-style: none; 
  padding: 0 0 7px 0; 
}

.sidebar li a, .sidebar li a:hover { 
  padding: 0 0 0 40px;
  display: block;
  background: transparent url(link.png) no-repeat left center;
} 

.sidebar li a.selected { 
  color: #d20000;
  text-decoration: none;
} 

.sideButtons {
    text-align: center;
}

#content { 
  text-align: left;
  float: left;
  width: 595px;
  padding: 0;

}

#content ul { 
  margin: 2px 0 22px 0px;
}

#content ul li { 
  list-style-type: none;
  background: url(bullet.png) no-repeat;
  margin: 0 0 6px 0; 
  padding: 0 0 4px 25px;
  line-height: 1.5em;
}

#footer { 
  width: 898px;
  font: normal 100% 'lucida sans unicode', arial, sans-serif;
  height: 33px;
  padding: 24px 0 5px 0;
  text-align: center; 
  background: transparent;
  color: #000;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

#footer a { 
  color: #000;
  text-decoration: none;
}

#footer a:hover { 
  color: #000;
  text-decoration: underline;
}

#colours { 
  height: 0px;
  text-align: right;
  padding: 66px 16px 0px 300px;
}
  
.form_settings { 
  margin: 15px 0 0 0;
}

.form_settings p { 
  padding: 0 0 4px 0;
}

.form_settings span { 
  float: left; 
  width: 200px; 
  text-align: left;
}
  
.form_settings input, .form_settings textarea { 
  padding: 5px; 
  width: 299px; 
  font: 100% arial; 
  border: 1px solid #E5E5DB; 
  background: #F2F0EF; 
  color: #47433F;
}
  
.form_settings .submit { 
  font: 100% arial; 
  border: 1px solid; 
  width: 99px; 
  margin: 0 0 0 212px; 
  height: 33px;
  padding: 2px 0 3px 0;
  cursor: pointer; 
  background: #000; 
  color: #F2F0EF;
}

.form_settings textarea, .form_settings select { 
  font: 100% arial; 
  width: 299px;
}

.form_settings select { 
  width: 310px;
}

.form_settings .checkbox { 
  margin: 4px 0; 
  padding: 0; 
  width: 14px;
  border: 0;
  background: none;
}

.separator { 
  width: 100%;
  height: 0;
  border-top: 1px solid #D9D5CF;
  border-bottom: 1px solid #F2F0EF;
  margin: 0 0 20px 0;
}

.box {
  background-color: #000;
  border: double #F2F0EF;
  padding: 10px;
  width: calc(48% - 20px);
  margin-right: 5px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;
}

.sidebox {
  background-color: #000;
  border: double #F2F0EF;
  padding: 10px;
  margin-right: 5px;
  margin-bottom: 10px;
  display: inline-block;
  text-align: center;

}

p.alignr {
  text-align: right;
}

.centerText {
  text-align: center;
}

.centerimg {
    display: block;
    margin-left: auto;
    margin-right: auto;

}

.videoWrapper {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 */
  height: 0;
}

.videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

table { 
  margin: 10px 0 30px 0;
}

table tr th, table tr td { 
  background: #3B3B3B;
  color: #F2F0EF;
  padding: 7px 4px;
  text-align: left;
}
  
table tr td { 
  background: #F0EFE2;
  color: #47433F;
  border-top: 1px solid #F2F0EF;
}

/* Music Player section */

#musicplayer{
    font-family:'Arial'; /* default font */
    background:#F2F0EF; /* background color of player */
    border:4px solid #4cd4de; /* border around player */
    width:200px; /* width of the player - make it 100% if you want it to fill your container */
    padding:10px;
    text-align:center; 
    display:flex;
    flex-direction:column;
    gap:10px;
}

.songtitle, .track-info, .now-playing{
    padding:5px;
}

.controls{
    display:flex; 
    flex-direction:column; 
    gap:10px;
}

.buttons{
    display:flex;
    justify-content:center;
    font-size:17px !important; /* size of controls */
    width:100%;
}

.buttons div{
    width:33.3%;
}

.playpause-track, .prev-track, .next-track{
    color:#e74492; /* color of buttons */
    font-size:35px !important; /* size of buttons */
}

.volume-icon{
    font-size:22px !important; /* size of volume icon */
}

.seeking, .volume{
    display:flex;
    flex-direction:row;
    align-items:center;
    gap:5px;
}

.now-playing, .track-info{
    background-color:#093d40; /* background color of top two boxes */
}

.now-playing{
    font-weight:bold;
}

input[type=range]{
    -webkit-appearance:none; /* removes default appearance of the tracks */
    width:100%;
}

input[type=range]:focus{
    outline:none; /* removes outline around tracks when focusing */
}

input[type=range]::-webkit-slider-runnable-track{
    width:100%;
    height:4px; /* thickness of seeking track */
    background:#e74492; /* color of seeking track */
}

input[type=range]::-webkit-slider-thumb{
    height:10px; /* height of seeking square */
    width:10px; /* width of seeking square */
    border-radius:0px; /* change to 5px if you want a circle seeker */
    background:#e74492; /* color of seeker square */
    -webkit-appearance:none;
    margin-top:-3px; /* fixes the weird margin around the seeker square in chrome */
}

input[type=range]::-moz-range-track{
    width:100%;
    height:4px; /* thickness of seeking track */
    background:#e74492; /* color of seeking track */
}

input[type=range]::-moz-range-thumb{
    height:10px; /* height of seeking square */
    width:10px; /* width of seeking square */
    border-radius:0px; /* change to 5px if you want a circle seeker */
    background:#e74492; /* color of seeker square */
    border:none; /* removes weird border around seeker square in firefox */
}