
html, body {
    font-family: Arial, Verdana, sans-serif;
    background-color: #ffffff;
    color: black;
    margin: 0px;
    padding: 0px;
    font-size: 15px;
    color: #333333;
}

h1 {
    font-size: 1.4rem;
    color: #333333;
}

h2 {
    font-size: 1.1rem;
    color: #333333;
}

h3 {
    font-size: 1rem;
    color: #333333;
}

a {
    color: #333333;
}

li {
    margin: 8px;
}

hr {
    color: #333333;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.page {
    max-width: 1020px;
    height: 100vh;
    margin-left: auto;
    margin-right: auto;
    display: grid;
    grid-template-rows: auto 1fr 60px;
}

.gpvlogo {
    position: absolute;
    top: 10px;
    left: 10px;
    max-height: 30%;
}

.mainNav {
    display: grid;
    grid-template-columns: repeat(6, auto);
    column-gap: 1px;
}

    .mainNav > a, .secNav > nav > a, .secNav > button {
        padding: 12px;
        justify-self: stretch;
        background-color: #1040ac;
        color: #ffffff;
        text-decoration: none;
        border: none;
    }

        .mainNav > a:hover {
            color: #1040ac;
            background-color: white;
        }

.secNav {
    display: none;
}

    .secNav > nav {
        display: grid;
        grid-auto-rows: 40px;
        row-gap: 4px;
    }

footer {
    padding: 4px;
    background-color: #1040ac;
    color: #ffffff;
    text-decoration: none;
    border: none;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    #gpvlogo {
        position: absolute;
        top: 10px;
        left: 10px;
        max-height: 30px;
    }
    
    .mainNav {
        display: none;
    }

    .secNav {
        display: grid;
        grid-template-rows: 40px auto;
        row-gap: 4px;
    }
}

.mainNavLinkActive {
    color: #1040ac !important;
    background-color: white !important;
}

.inputItem {
    display: grid;
    grid-template-rows: 20px 30px;
    row-gap: 4px;
}

.inputTextarea {
    display: grid;
    grid-template-rows: 20px auto;
    row-gap: 4px;
}

.dialogOut {
    background-color: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 3000;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
}

.dialogBox {
    background-color: #ffffff;
    padding: 20px;
    max-width: 80%;
    min-width: 250px;
    max-height: 80vh;
    overflow-y: auto;
    align-self: center;
    justify-self: center;
    border: 1px solid #1e90ff;
}

    .dialogBox p {
        color: #000000;
    }