@font-face {
    font-family: pixel;
    src: url("PixelGame.otf") format("opentype");
}
@font-face {
    font-family: pixeled;
    src: url("Pixeled.ttf") format("truetype");
}
body {
  background-image: url('/images/background.png');
  justify-content: center;
}
#nav {
  display: flex;
  flex-direction: row;
  justify-content: center;
  text-align: center;
  align-items: center;
  border: 20px solid;
  border-image: url('/images/paperborder.png') 24 round;
  border-image-slice: fill;
  background-clip: padding-box;
  background-color: #fde1af;
  color: #c4472e;
  font-size: 2vw;
  font-family: pixel, sans-serif;
  padding: 5px 25px;
}
#nav a {
  color: #c4472e;
  text-decoration: none;
  margin:0px 20px;
}
#characters {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-content: center;
  align-items: center;
}
#neil, #sam, #penny {
  float: left;
}
#seb, #abby, #maru {
  float: right;
}
.container img{
  width: auto;
  max-width: 450px;
  height: auto;
  max-height: 400px;
}
.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 50vw;
  padding: 30px;
  background-image: url('images/textbox.png');
  background-size:100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  margin: 50px;
}
.container .info {
  display: flex;
  flex-direction: column;
  padding: 10px;
}
.info h1 {
  font-family: pixel, sans-serif;
  font-size: 5vw;
  color: #c4472e;
  margin: 0;
}
.info p {
  font-family: pixeled, sans-serif;
  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;
  color: #c4472e;
  font-size: 5vw;
  font-family: pixel, sans-serif;
  padding: 5px 25px;
  transition: transform 0.5s;
}
.homebtn button:hover {
  transform: translateY(-10px);
}