html{
position:absolute;
display:block;
width:100%;
height:100%;

}
body{
position:relative;
display:block;
width:100%;
height:100%;
}
h1{
position:relative;
display:block;
width:100%;
font-size:30pt;
font-weight:bold;
text-align:center;
 font-family: "Special Gothic Expanded One", sans-serif;
background:gray;
color:lightgreen;
clip-path: polygon(50% 0%, 65% 27%, 84% 0, 100% 70%, 94% 85%, 50% 100%, 21% 83%, 0 93%, 0 0, 26% 10%);
}
.gameDiv{
 width: 400px;      /* Set container width */
    height: auto;      /* Let height adjust to content */
    display: inline-block; /* So it fits the image */
border:2px solid gray;
box-shadow:5px 5px 5px black;
}

.gameDiv img{
  width: 100%;       /* Scale image to container width */
    height: auto;      /* Maintain aspect ratio */
    display: block;    /* Remove bottom whitespace */
}
.gameTitle{
position:relative;
display:block;
text-align:center;
}