html {
	background-color: black;
    background-image: url(../images/starry_sky.jpg);
    background-repeat: repeat;
    background-size: 100%;
    background-attachment: fixed;
    max-width: 1250px;
}
@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;
    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;
}
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;
}
header h1 {
    text-decoration: underline;
}
.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}
/* Create four equal columns that sits next to each other */
.column {
  flex: 25%;
  max-width: 25%;
  padding: 0 4px;
}
.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100%;
}