:root {
    --color-lightest: rgb(252, 250, 245);
    --color-light: rgb(249, 245, 234);
    --color-light-transparent: rgba(252, 250, 245, 0.9);
    --color-muted: #3f6444;
    --color-dark: #113616;
}

.header_link {
    text-decoration: none;
    color: #ffffff;
    text-shadow: 0px 1px 2px #000000;
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    margin: 0 20px;
    transition: all 0.3s ease;
    text-align: center;
}   

.header_link.scrolled {
    color: #113616;
    text-shadow: 0px 1px 2px #ffffff;
}
.header_container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
    height: 70px;
    width: 100%;
    max-width: 100vw;
    box-sizing: border-box;
    z-index: 1000;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Cormorant Garamond', serif;
}


@media (max-width: 768px) {
    .header_link {
        margin: 0 10px;
    }
}
