html, body {
    height: 100%;
    margin: 0;
    font-family: Candara, Calibri, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    position: relative;
}

body {
    display: flex;
    flex-direction: column;
    background-color: #e2e2e2; 
}

body::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/background.jpg'); 
    background-size: cover;
    background-position: center;
    opacity: 0.3; 
    z-index: -3; 
}

main {
    flex: 1; 
    margin-left: 1.5%;
    margin-top: 1%;
}

header {
    background-color: #DCC7AA;
    display: flex;
    align-items: center;
    min-height: 6vh;
    padding: 0 20px; 
    font-weight: normal;
    font-size: 1rem; 
}

.headercontainer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#navigation {
    flex: 2;
}

#navigation-links {
    display: flex;
    justify-content: space-around;
    list-style: none;
    padding: 0;
    margin: 0;
}

#navigation-link {
    color: black;
    font-size: 1rem; 
    text-decoration: none;
    font-style: italic;
}

.footer {
    background-color: #f1f1f1;
    padding-bottom: 15px;
    text-align: center;
    border-top: 1px solid #ddd; 
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; 
}

.footer-item {
    margin: 0 15px;
}

.footer-item p {
    margin: 0;
}

.footer-item a {
    text-decoration: none;
    color: #0073e6; 
}

.footer-item a:hover {
    text-decoration: underline;
}
