* {
    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;
    border:  2px  solid #0e0e0e;
    max-width: 3600px;
}

header {
    text-align: center;
    background-color: #C2CFA1;
    padding-top: 0;
    padding-bottom: 0;
    border-bottom: #0e0e0e solid 2px;
}
header a{
    color: #0e0e0e;
}
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:visited {
    color: #C2CFA1;
}

nav a:hover {
    color: #303513;
}



main {
    padding-bottom: 2%;
    text-align: center;
    background-color: #4b502f;
}

main p {
    font-size: 150%;
    margin-right: 5%;
    margin-left: 5%;
}

main a:link {
    color: #C2CFA1;
    text-decoration: none;
    
}

main a:visited {
    text-decoration: none;
    color: #C2CFA1;
}

h2{   
    font-size: 175%;
}

.character {
    margin-bottom: 6%;
    max-width: 60%;
    height: auto
}

.character h2 {
    font-size: 250%;
}

 #gameplayImage{
    max-width: 100%;
    height: auto;
}

#coverArt {
    max-width: 100%;
    height: auto;
}

#mapsMain {
    display: flex;
    flex-direction: column;
}

.flexSection {
    margin-bottom: 5%;
}

.flexImage {
    max-width:100%;
    height: auto;
}

table {
    width: 90%;
    margin: auto;
    border: solid #000000 2px;
    margin-bottom: 5%;
}

td, th {
    margin-bottom: 10%;
    border: solid #000000 2px;
    padding: 5px;
    font-size:130%;
}

.esportImage {
    max-width: 90%;
    height: auto;
}

form {
    display: flex;
    margin: auto;
    flex-direction: column;
    max-width: 90%;
    font-size: 115%;
    font-weight: bold;
    background-color: #688162;
    padding-right: 2%;
    padding-left: 2%;
}

form label{
    font-size: 120%
}

form input, select, textarea{
    margin-bottom: 3%;
}




#submit-button {
    width: 200px;
    font-weight: bold;
    font-size: 110%;
    margin-top: 2%;
    
}


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: auto;   
        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;
    }

    .flexImage {
        max-width: 50%;
        height: auto;
    }
    
    .flexSection {
        display: flex;
        margin-left: 3%;
        margin-right: 3%;
        margin-bottom: 4%;
    }
    
    .flexSection p {
        width: 50%;
    }

    form {
        max-width: 60%;
    }


    footer {
        grid-row: 3 / 4;
        grid-column: 1 / 3;
        text-align: center;
    }

}

