* {
  box-sizing: border-box;
}

:root {
    --content: #43256E;
}

@font-face {
    font-family: JMHType;
    src: url("/fonts/JMH Typewriter Thin.ttf");
}

@font-face {
    font-family: JMHType;
    src: url("/fonts/JMH Typewriter.ttf");
    font-weight: bold;
}

body {
    font-family: "JMHType", sans-serif;
    width: 100vh;
    height: 100vh;
    overflow: hidden;
    padding: 0;
    margin: 0 auto;
    /* display: flex; */
    background-color: #092239;
    background-size: cover;
    color: #b7ebff;
    background-image: url("/assets/phantom/darkerdynamic.gif");
    background-attachment: fixed;
    background-repeat: round;
    cursor: url("/assets/phantom/drcursor.png"), auto;
}

h1, h2, h3 {
  text-align: center;
}

h1, h2, h3, p {
  cursor: url("/assets/phantom/drcursor text.png"), auto;
}

a {
  color: #ac8a00;
  text-decoration: none;
  cursor: url("/assets/phantom/drcursor link.png"), auto;
}

a:hover {
  /* color: #9b4100; dark orange color*/
  font-weight: bold;
  text-decoration: underline;
}

details {
  padding-bottom: 10px;
}

#player {
  position: fixed;
  left: 0;
  top: 0;
  max-width: 20vw;
  height: auto;
  padding: 4px;
  margin: 0 auto;
  background-color: #2d4760;
  order: 4;
  z-index: 100;
  wrap-text: avoid;
}

#player > p {
  text-indent: 0px;
  text-align: center;
}

#player > details > a {
  text-indent: 15px;
}

#scm {
  position: absolute;
  z-index: 100;
}

#fbox {
  width: 60vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 20%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

#sidebar {
  background-color: #143851;
}

aside {
  width: 25%;
  height: calc(100vh - 80px);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: flex-start;
  padding: 0;
  font-size: smaller;
  text-align: center;
}

#headfoot {
  background-color: #092239;
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.scrollbar {
  width: 80%;
  height: 66%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 auto;
  padding: 0;
  border: medium solid #2d4760;
  border-radius: 5px;
  scrollbar-width: none; /* firefox and other gecko browsers */
  -ms-overflow-style: none; /* edge and ie */
}

.scrollbar::-webkit-scrollbar {
  display: none; /* chromium & webkit */
}

#leftdd {
  padding: 10px;
}

.tilt:hover {
  transform: rotate(5deg);
}

.big { /* things that need to take up the whole flex space */
  width: 100%;
}

main {
  background-color: #2d4760;
}

.middle {
  flex-grow: 1;
  padding: 20px 20px;
  height: calc(100vh - 80px);
  max-width: 30vw;
  display: block;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content:center;
}

#midscroll {
  width: 100%;
  height: 80%;
  overflow-x: hidden;
  overflow-y: auto;
  margin: 0 auto;
  padding: 0px 20px 20px;
  border: medium solid #b7ebff;
  border-radius: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

#midscroll::-webkit-scrollbar {
  display: none;
}

@keyframes swing {
	0% {right: -20vw; top: -10vh; transform: rotate(-20deg)}
	50% {top: 0; transform: rotate(20deg)}
	100% {right: 100vw; top: -10vh; transform: rotate(60deg)}
}

#winslowSwing {
	width: 300px;
	height: auto;
	position: fixed;
	top: -10vh;
	right: -20vw;
	z-index: 999;
	display: none;
}
