html {
	background-color: black;
    background-image: url(../images/starry_sky.jpg);
    background-repeat: repeat;
    background-size: 100%;
    background-attachment: fixed;
}
@font-face {
    font-family: BW_Text;
    src: url(pokemon-black-white-black-2-and-white-2-tex.ttf);
}
body {
    color: white;
    font-family: BW_Text;
    margin: 0 auto;
    position: fixed;
    display: flex;
    height: auto;
}
/* the area below is for all links on your page EXCEPT for the navigation */
body a {
  color: cyan;
  text-decoration:none;
}
body aside {
    background-color: rgba(0, 0, 0, 0.5);
    border: 3px dotted white;
    width: 250px;
    height: 350px;
    font-size: 35px;
    padding: 10px;
    display: block;
    margin: 15px;
    text-align: center;
}
nav ul {
    text-align: left;
}
nav ul li a{
    color: white;
    text-decoration: underline;
    display: block;
    list-style-type: square;
}
li::marker {
    content: '⊹ ';
    }
#nav_menu img {
    display: block;
    width: 88px;
    height: 31px;
    margin-left: auto;
    margin-right: auto;
}
#nav_menu p {
    font-size: 20px;
    margin: 0;
}
aside div img {
    display: block;
    width: 200px;
    height: 200px;
    margin-top: 20px;
    margin-left: auto;
    margin-right: auto;
    padding: 10px;
}
/* Page specific CSS */
body main {
    display: flex;
    background-color: rgba(0, 0, 0, 0.5);
    border: 3px dotted white;
    padding: 10px;
    margin: 15px;
    width: 100%;
    height: 100%;
    text-align: center;
}
main div {
    flex: 1;
}
main div h1 {
    font-size: 60px;
    text-decoration: underline;
}
main div p {
    font-size: 40px;
    padding: 0px;
    margin: 5px;
}