body{
    color: white;
    margin: 0;
    top: 0;
    font-family: Verdana, sans-serif;
    background-color: #0f1923;
}

.selected{
    color: white;
}

footer{
    text-align: center;
    margin-bottom: 20px;
    margin-top: 20px;
}

.testFooter{
    text-align: center;
    margin-bottom: 10px;
    margin-top: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

nav{
    width: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    color: #25AE88;
    display: inline-block;
    position: fixed;
    top: 0;
}

nav img{
    width: 30px;
    float: left;
    margin-top: 16px;
    padding-right: 10px;
}

a{
    text-decoration: none;
    color: #25AE88;
}

a:hover{
    color: white;
}

nav ul{
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav li{
    font-size: 13px;
    padding: 0 20px 0 20px;
}

.page-title{
    float: left;
    width: 300px;
}

.menu-item{
    float: right;
}

.main-pic{
    width: 100%;
    position: fixed;
    z-index: -1;
}

main{
    margin-right: 20%;
    margin-left: 20%;
    padding-top: 65px;
}

.page-text{
    border-style: solid;
    border-width: 5px;
    border-color: black;
    padding: 1em 1em 1em 1em;
    background-color: rgb(30, 143, 113);
}

p{
    margin-block-start: 0;
    margin-block-end: 0;
}

.agents-header-span img{
    width: 50px;
    float: left;
    padding-right: 10px;
}

.agents-header-span h2{
    padding-top: 10px;
}

.agents-p-span img{
    width: 200px;
    float: right;
    padding-left: 16px;
}

.agents-p-span::after{
    content:"";
    clear: both;
    display: table;
}

table, th, td{
    border: 2px solid black;
    border-collapse: collapse;
    text-align: center;
    padding: 0 5px 0 5px;
    word-break: break-word;
}

.guns-table img{
    width: 100px;
}

.guns-table th{
    max-width: 125px;
}

.gun-name{
    min-width: 100px;
}

.maps-div{
    display: flex;
}

.submap-div{
    display: flex;
    flex-direction: column;
    width: 33%;
    margin-right: 5px;
    margin-left: 5px;
}

.submap-div div{
    display: flex;
    flex-direction: column;
}

.submap-div img{
    padding-bottom: 10px;
}

.startdiv{
    text-align: center;
}

.startbutton{
    display: contents;
}

.startbutton img{
    margin-top: 15px;
}

.startbutton img:hover{
    opacity: 0.8;
}

.task{
    margin-top: 50px;
    text-align: center;
}

#question{
    font-size: larger;
}

.answers{
    text-align: left;
    margin-top: 50px;
    margin-bottom: 50px;
}

.answer{
    display: flex;
    margin-top: 20px;
    margin-bottom: 20px;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    padding: 5px 5px 5px 5px;
}

.answer:hover{
    cursor: pointer;
    background-color: #1E8F71;
}

.answerLetter{
    margin-right: 20px;
}

.results{
    display: none;
}

.resultAll{
    display: flex;
}

.resultRight{
    display: flex;
    color: #2cb72c;
}

.resultFalse{
    display: flex;
    color: #e73939;
}

.return-div{
    display: flex;
    align-items: center;
    justify-content: center;
}

.return-back{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 10px;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    padding: 5px 5px 5px 5px;
}

.return-back:hover{
    cursor: pointer;
    background-color: #1E8F71;
}

#return{
    display: none;
    margin-top: 20px;
    margin-bottom: 10px;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    padding: 5px 5px 5px 5px;
    text-align: center;
}

#return:hover{
    cursor: pointer;
    background-color: #1E8F71;
}

.end-div{
    display: flex;
    align-items: center;
    justify-content: center;
}

#end{
    margin-top: 20px;
    margin-bottom: 50px;
    border-color: white;
    border-style: solid;
    border-width: 1px;
    padding: 5px 5px 5px 5px;
    text-align: center;
}

#end:hover{
    cursor: pointer;
    background-color: #1E8F71;
}

@media print {
    .main-pic{
        display: none;
    }

    .page-text{
        border-style: none;
    }

    nav{
        display: none;
    }

    main{
        margin-left: 0;
        margin-right: 0;
    }

    .submap-div img{
        display: none;
    }

    .submap-div h3{
        display: none;
    }
}

@media only screen and (max-width: 800px) {

    main{
        margin-right: 5%;
        margin-left: 5%;
    }

    nav{
        position: static;
    }

}