/* page base */
body {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    background-color: #d0ddb2;
    color: black;
    font-family: Arial, Helvetica, sans-serif;
}

/* main spacing */
main {
    margin: 10px;
}

/* Remove underline and color change for all links */
/*a:not(.logout-link) {*/
/*    text-decoration: none;*/
/*    color: inherit;*/
/*}*/

/* Remove effects on hover/active/visited states */
/*a:hover, a:active, a:visited {*/
/*    text-decoration: none;*/
/*    color: inherit;*/
/*}*/

/* header style */
header {
    display: flex;
    align-items: center;
    margin: 5px;
    padding: 8px;
}

/* profile section */
header figure {
    cursor: pointer;
    margin-left: auto;
}

/* navigation */
nav {
    display: flex;
    justify-content: center;
    background-color: #4f506e;

}

/* text color */
h1,
h2,
p,
label {
    color: black;
}

/* default buttons */
button {
    margin: 0.5rem;
    background-color: #ccd7c9;
    color: black;
    width: 6rem;
    height: 3rem;
    border: 0.1rem solid black;
    cursor: pointer;
    border-radius: 1.5rem;
    box-shadow: 0 .25rem .5rem rgba(0,0,0,0.25);
    font-weight: bold;
}

button:hover {
    background-color: #d1e8ca;
}

/* big buttons */
.button {
    margin: 5px;
    background-color: gold;
    color: white;
    width: 120px;
    height: 80px;
    border: 1px solid black;
}

/* confirm buttons */
.conf-button {
    margin: 10px;
    background-color: gold;
    color: crimson;
    width: 120px;
    height: 80px;
    border: 1px solid black;
}