/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-image: url("yume nikki bg.jpg");
  color: #4A1985;
  font-family: 'BBSesque';
  text-align: center;
}

@font-face {
     font-family: 'BBSesque';
   src: url(BBSesque.ttf);
  }
  
  #top-space{
    margin-top: 100px;
    margin-bottom:25px;
  }
  
 #container{
   border: #4A1985 10px groove;
   height: 300px;
   width: 500px;
   margin: auto;
   margin-top: 15px;
   padding: 15px;
   background-color: black;
 }
       
.nav {
        border: #4A1985 10px groove;
        text-align: center;
        list-style-type: none;
        text-decoration: none;
        background-color: black;
        color: #4A1985;
        padding: 5px 5px;
        font-size: 2rem;
        margin-left: auto;
        margin-right: auto;
        width: 34%;
      }
  