body{
    font-family: 'Courier New', Courier, monospace;
    background-image: url(quiz2_bg.png);
    background-repeat: repeat;
    background-position: top;
    background-size: contain;

    font-size: 16px;
}

#wrapper{
    margin: 12.5vh 12.5vw auto 12.5vh;
    width: 75vw;
    height: 75vh;

    background-color: #CDC4C5;

    box-shadow: 7px 7px 3px #2A2029;

    box-sizing: border-box;

    display: flex;
    flex-direction: column;
    gap: 0;

    position: relative;
}

header{
    font-size: 35px;
    font-weight: bold;
    text-align: center;

    padding: 15px;

    text-shadow: 2px 2px 1px #958C88;
    color: #66535E;
}

nav{
    display: flex;
    flex-direction: row;
    justify-content: center;

    height: 50px;
    width: 100%;
    padding: 4px;

    background-color: #2A2029;

    box-sizing: border-box;
    gap: 5px;
}
.navLinks{
    display: block;
    box-sizing: border-box;
    background-color: #66535E;
    color: #CDC4C5;

    text-decoration: none;
    text-align: center;

    height: 100%;
    line-height: 35px;
    width: 100px;
    padding: 5px;
}
.navLinks:hover{
    background-color: #958C88;
    color: #fff;
}

main{
    padding: 7px;

    background-color: #958C88;
    color: #2A2029;

    display: flex;
}

table{
    border: 1px solid #2A2029;
    border-collapse: collapse;
    text-align: center;

    background-color: #958C88;
    color: #2A2029;

    margin: 10px auto 10px auto;

    width: 95%;
}

tr:nth-child(even){
    background-color: #CDC4C5;
}
tr{
    font-size: 14px;
}

footer{
    box-sizing: border-box;
    width: 100%;
    background-color: #CDC4C5;
    color: #66535E;

    padding: 2px;

    position: absolute;
    bottom: 0;

    text-align: center;
    font-style: italic;

    font-size: 75%;
}