* {
    box-sizing: border-box;
}

body{
    background-color: #0F100B;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Verdana, sans-serif;

}

#wrapper {   
    background-color: white;
    display: flex;
    flex-direction: column;
}

header {
    text-align: center;
    background-color: #404622;
    padding-top: 0;
    padding-bottom: 0;
}
header a{
    color: #f5f5dc;
}
header a:link {
    text-decoration: none;
    color: #f5f5dc;
}
header a:hover {
    color: #0F100B;
}


h1 {
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 250%;
}

nav {
        display: flex;
        flex-direction: column;
        text-align: center;
        padding-top: 10px;
        padding-bottom: 10px;
        margin-top: 0;
        margin-bottom: 0;
        background-color: #0F100B;
        
}

nav a{
    padding-top: 5px;
    padding-bottom: 5px;
    border-bottom: solid;
}
nav a:link {
    color: #C2CFA1;
    text-decoration: none;
    font-size: 150%;

}
nav a:hover {
    color: #404622;
}

main {
    padding-bottom: 2%;
    text-align: center;
    background-color: #404622;
}

main p {
    font-size: 150%;
}

section h2{   
    font-size: 175%;
}



 #gameplayImage{
    max-width: 100%;
    height: auto;
}

#coverArt {
    max-width: 100%;
    height: auto;
}

footer {
    text-align: center;
    background-color: #7a8266;
    font-size: 120%;
}

footer a:link {
    color: #0e0e0e;
    
}



@media(min-width:1024px){
    #wrapper {
        display: grid;
        grid-template-columns: 20% 80%;
        grid-template-rows: 5% 90% 8%;   
        width: 80%;
        margin:auto;
    }
    body {
        background-color: rgb(44, 44, 44);
    }
    header {
        grid-row: 1 / 2;
        grid-column: 1 / 4;
    }
    nav {
        padding-top: 20%;
        grid-row: 2 / 3;
        grid-column: 1 / 2;
        font-size: 125%;
    }
    nav a{
        display: flex;
        flex-direction: vertical;
        justify-content: center;
        align-items: center;
        margin-bottom: 5%;
    }
    main {
         grid-row: 2 / 3;
         grid-column: 2 / 3;
    }
    footer {
        grid-row: 3 / 4;
        grid-column: 1 / 3;
        text-align: center;
    }

}

