/* styles.css */

/*–– Import custom fonts ––*/
@import url('https://fonts.googleapis.com/css2?family=Silkscreen:wght@400;700&display=swap');

@font-face {
  font-family: 'ronda';
  src: url('https://static.tumblr.com/rmj06l2/kcLlo1q2y/pf_ronda_seven.ttf');
}
@font-face {
  font-family: pixel;
  src: url('https://dl.dropbox.com/s/kmhe7d3n18vdz5e/w95fa.woff?dl=0');
}

/*–– Reset & Base ––*/
html, body {
  margin: 0;
  height: 100%;
}
body {
  background-color: #eee;
  background: url('try1.png') repeat-y center/cover scroll;
  cursor: url("fingerheart.cur") 16 16, auto;
  font-family: 'Silkscreen', monospace, sans-serif;
}

#playerContainer {
  width: 640px;
  height: 360px;
  margin: 20px auto;
  position: relative;
}

#app {
  width: 100%;
  height: 100%;
}



/*–– Typography ––*/
table {
  font-family: "ronda", Calibri, Verdana, Arial, sans-serif;
  font-size: 8px;
  text-align: justify;
  color: #5DA45D;
  letter-spacing: 1px;
  line-height: 10px;
}
a:link, a:visited, a:active {
  color: #a0001c;
  text-decoration: none;
}
a:hover {
  color: #e5383b;
}
b {
  font-weight: bold;
  color: #039089;
}
i {
  color: #444;
  font-style: normal;
}

/*–– Custom Scrollbar ––*/
::-webkit-scrollbar-thumb {
  background-color: #005555;
  border-radius: 5px;
}
::-webkit-scrollbar {
  width: 5px;
  background: transparent;
}

/*–– Titles ––*/
.title {
  background: #EDFDFD;
  text-transform: uppercase;
  font-family: pixel, Arial, sans-serif;
  font-size: 12px;
  color: #039089;
  line-height: 12px;
  padding: 1px 0 0 4px;
  border-bottom: 1px dashed #71C471;
  margin: 0 0 4px;
  letter-spacing: 3px;
}
.bigtitle {
  background: #EDFDFD;
  text-transform: uppercase;
  font-family: pixel, Arial, sans-serif;
  font-size: 18px;
  color: #005555;
  line-height: 18px;
  padding: 1px 0 0 4px;
  border-bottom: 1px dashed #71C471;
  margin: 4px 0 4px;
  letter-spacing: 3px;
}

/*–– Navigation Menu ––*/
#menu a {
  display: inline-block;
  background: #c32530;
  font: normal 9px 'Silkscreen', monospace, georgia;
  text-transform: uppercase;
  padding: 2px 5px;
  letter-spacing: 1px;
  color: #333;
  border-radius: 10px;
  border: 1px solid #a11d33;
  line-height: 9px;
}
#menu a:hover {
  color: #005555;
}

/*–– Layout Blocks ––*/
.navigation {
  background: #a01a7d;
  border-bottom: 1px solid #aaa;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.sitename {
  background: #fff;
  padding-left: 5px;
  border: 1px solid #005555;
  border-bottom: none;
  line-height: 18px;
}
.leftside {
  background: #FFF;
  border-right: 1px solid #ddd;
  border-left: 1px solid #a01a7d;
}
.content {
  background: #FFF;
  border-right: 1px solid #a01a7d;
}
.footer {
  background: #a01a7d;
  color: #555;
  border-top: 1px solid #111;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  line-height: 18px;
  text-align: center;
}
.footer a {
  color: #fff;
}
