@font-face {
    font-family: pixel;
    src: url("PixelGame.otf") format("opentype");
}
@font-face {
    font-family: pixeled;
    src: url("Pixeled.ttf") format("truetype");
}
* {
  cursor: url('images/voidegg.png'), default !important;
}
body {
  background-image: url('images/background.png');
  background-size: contain;
  background-position: center;
}
#comic {
  justify-content: center;
  text-align: center;
  align-items: center;
}
h4 {
  color: #c4472e;
  font-family: pixel, sans-serif;
  font-size: 2vw;
  margin: 0;
}
#nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
  align-self: center;
  background-image: url('images/textbox.png');
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  padding: 15px;
}
#nav a{
  margin-bottom: 0;
  color: black;
  text-decoration: none;
  font-family: pixeled, sans-serif;
}

.episode {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  align-items: center;
}
.panel {
  width: 30rem;
  padding: 5px;
}
h1, h2, h3, p {
  text-align: center;
  font-family: pixel, sans-serif;
  font-size: 5vw;
  margin: 0;
}
.homebtn button{
  justify-content: center;
  text-align: center;
  align-items: center;
  background-image: url('images/textbox.png');
  background-size:100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  border: none;
  border-radius: 5px;
  color: #c4472e;
  font-size: 5vw;
  font-family: pixel, sans-serif;
  padding: 5px 25px;
  transition: transform 0.5s;
}
.homebtn button:hover {
  transform: translateY(-10px);
}