
html {
    font-family: sans-serif;
    background: rgba(212, 198, 116, 0.63);
    font-size: 1.5vmin;
}

body {
    margin: 0;
    padding: 0;
    background: none;
}

.flex {
    display: flex;
    flex-direction: column;
}
    .flex > div {
        width: 96%;
    }

h1 {
    text-align: center;
    margin-top: 1%;
}

a, a:hover {
    color: inherit;
    text-decoration: none;
}

img.logo {
    max-width: 40px;
    max-height: 40px;
}

nav {
    background: #afa01c;
    background-image: url("../img/honeycombDark.png");
    color: white;
    border-bottom: 1px solid rgb(168, 145, 39);
    padding: 0 5%;
    font-size: 110%;
}

nav > .container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
}
    ul {
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
        align-items: center;
        list-style-type: none;
        padding: 0.3% 0.5%;
        margin: 0 0.5%;
    }
        li {
            padding: 3%;
            margin: 3%;           
        }

main {
    margin: 0.5% 0;
    padding: 0.5% 1%;
}

label {
    margin-top: 1%;
}

button {
    margin: 2% 0;
    width: 100%;
    padding: 0.2%;
}
    nav > ul > li > form > button {
        background: none;
        border: none;
        color: white;
    }

.center {
    text-align: center;
}
.left {
    text-align: left;
}
.right {
    text-align: right;
}

.message {
    padding: 0.7%;
    border: 1px solid darkgreen;
    background:rgba(167, 212, 116, 0.63);
    text-align: center;
    margin-left: 35%;
    width: 30%;
    font-size: 130%;
}

div.form-error {
    color: rgb(180, 30, 30);
    font-size: 95%;
}
input.form-error {
    border: 1px solid rgb(180, 30, 30);
}

.block {
    margin: 1.7% 1%;
    padding: 1%;
}

button.logoutButton {
    background: none;
    border: none;
    color: inherit;
}

.table > :not(caption) > * > * {
    border-bottom-width: 0;
}

thead > tr {
    border-bottom-width: 0;
}
.table > :not(:first-child) {
    border-top: 2px solid rgb(168, 145, 39);
  }

@media screen and (min-width: 980px) {
    
    .flex {
        flex-direction: row;
    }

    nav > .container {
        flex-direction: row;
        justify-content: space-between;
    }
    
    ul {
        flex-direction: row;
        justify-content: space-around;
    }
}
