html, body, .root {
 height: 100%;
 margin: 0;
 -moz-box-sizing:border-box;
    -webkit-box-sizing:border-box;
    box-sizing:border-box;
}

.root {
  padding: 50px 200px; 
}

body {
  background-color: black;
  background-image: url("../images/background.png");
  background-position: center;
  color: black;
  font-family: Verdana;
  cursor: url("../images/cursor.png"), crosshair;
}

a:hover {
    cursor: url("../images/cursorhover.png"), crosshair;
}

.petals {
  background-image: url("../images/fallingpetals.gif");
  width: 100%;
  height: 100%;
  position: fixed;
  z-index:-1;
}

.content-container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.heading {
  color: white;
  padding: 55px;
  text-align: center;
  border: 3px double red;
  background-color: rgba(0,0,0,0.8);
  font-family: "Rubik Iso", system-ui;
}

.heading h1 {
    font-size: 60px;
    margin: 0 0 10px 0;

}
.heading span {
    font-size: 30px;
}

.title {
  font-family: "Monofett", monospace;
  font-size: 42px;
  letter-spacing: 5px;
  display: block;
}

.content {
  color: white;
  margin-top: 10px;
  display: flex;
  height: 100%;
  overflow: hidden;
}

.left-side, .middle {
  background-color: rgba(0,0,0,0.8);
  padding: 25px;
  border: 3px double red;
  font-family: "Iceland", sans-serif;
  font-size: 22px;
}

.border-img img {
  width: 250px;
}

.middle {
  margin-left: 10px;
  width: 100%;
  overflow-y: scroll;
}

.middle .title {
  text-align: center;
}

.middle-img {
 text-align: center; 
 margin: 40px;
}

.left-side {
  max-width: 260px;
}

.left-side .border-img {
 text-align: center; 
}

.left-side ul {
  list-style: none;
  padding: 0;
}

.left-side li {
  border: 1px solid darkgray;
  padding: 10px 5px;
  margin: 5px;
  background-color: black;
}

.player {
  margin-left: -20px;
  position: absolute;
  bottom: 50px;
}

a {
 color: white;
 text-decoration: none;
}

.guestbook-container {
 text-align: center; 
 height: 100%;
}

.guestbook {
  width: 80%;
  height: 100%;
}

.description {
  margin-bottom: 20px; 
}

.poem-container {
 text-align: center; 
}

.code-page a {
  text-decoration: underline; 
}

.instructions {
  list-style: decimal;
}

.codeblock {
  border: 1px solid gray;
  font-size: 12px;
  background-color: black;
  overflow-x: scroll;
}

.inline-code {
  font-size: 12px;
  background-color: black;
}
