html {
    background-image:url(../images/key\ art\ concept.jpg);
    background-size:cover;
    background-attachment: fixed;
    background-position: center;
}

body {
    width: 70%;
    max-width: 800px;
    background-color: rgba(0,0,0,0.9);
    border: solid rgb(255, 255, 255) 2px;
    margin: 20px auto;
    padding: 20px
}

/* header shennanigans */

header {
    display: flex;
    flex-direction: column;
}

.headerimg {
    margin: auto;
    margin-bottom: 10px;
    border-radius: 50%;
}

#gamelogo {
    width: 100%;
}

#navmenu {
    margin: auto;
    display: flex;
    flex-direction: row;
    justify-content:space-around;
    width: 100%;
    margin: 5px 5px;
    font-size: 25px;
}

#navmenu a{
    text-decoration: none;
    color:white;
}

#navmenu a:hover{
    text-decoration: underline;
}

#navmenu a:visited{
    color:white;
}

/* HOMEPAGE - main body shennanigans*/

.swagline{
    background-color: rgba(255,255,255);
    padding: 1px 0;
    margin: 10px 0;
}
h1 {
    text-align: center;
}

main {
    color:white;
}

.gridcontainer {
    display:grid;
    grid-template-rows: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
}

.gridpic {
    width: 100%;
}

.screenie {
    width: 75%;
    margin: 0 12.5%;
}

.screenie img {
    width: 75%;
}


.imgcaption {
    font-size: medium;
}
main p {
    font-size: large;
}

/* LEVELS & CHARACTERS - main body shennanigans */

.descriptiongrid {
    display: grid;
    grid-template-columns: 50% 50%;
    row-gap: 20px;
    column-gap: 10px;
}

.LabelledPic img {
    width: 100%;
}

#blaskoskull {
    width: 50px;
    float: left;
    margin-right: 10px;
}

/* footer shenannigans */

footer {
    color: lightgray;
    text-align: center;
}


/* responsive design shennanigans*/

@media screen and (max-width: 780px) { /* TABLET */
    .descriptiongrid {
      grid-template-columns: 100%;
    }
  }
  


@media screen and (max-width: 480px) { /* PHONE */
    .gridcontainer {
        grid-template-columns: 100%;
    }
    #navmenu { /* navmenu is vertical for phone and not for tablet. on tablet its spaced enough apart They Don't Need It*/
        flex-direction: column;
        text-align: center;
    }
    #navmenu a {
        margin: 8px
    }
  }
  
