* {
    box-sizing: border-box;
    background-color: #C2C5AA;
}


body {
    margin: 0;
}

a {
    background-color: transparent;
}


.nav_body {
    background-color: #C2C5AA;
    border-bottom: 1px solid #000000;
    margin: 0;
    position: sticky;
    top: 0;
    z-index: 99;
    width: 100%;
}

.nav_layout {
    display: grid;
    align-items: center;
    grid-template-columns: 2;
    grid-template-rows: 1;
}

.menu_container {
    display: none;
}


.logo_container {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: start;
}

.logo {
    max-width: 8.2em;
    max-height: 7.1em;
    margin: 1em;
    align-self: center;
}

.nav_links {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: end;
}

.nav_item {
    margin: 1em;
    font-size: 1.5em;
}

a:link,
a:visited {
    color: #000000;
    text-decoration: none;
}

.nav_item a:hover {
    font-weight: bold;
}


.title {
    /* grid-column: 2 / 3;
    grid-row: 3 / 4; */
    margin-bottom: 2em;
}

.double_lines {
    color: #000000;
    width: 100%;
    background-color: #C2C5AA;
    margin-bottom: 4.5em;
}

.hr_1 {
    color: #000000;
    border-style: solid;
    background-color: #000000;
    height: 3px;
    width: 45%;
    margin: 0 auto;
}

.hr_2 {
    color: #000000;
    border-style: solid;
    background-color: #000000;
    height: 1px;
    width: 35%;
    margin: 1px auto;
}


.panel {
    /* grid-column: 2 / 3;
    grid-row: 4 / 5; */
    display: grid;
    align-items: center;
    justify-content: stretch;
    grid-template-columns: 1fr 3fr;
    width: 100%;
}

/* .panel_l_margin {
    grid-column: 1 / 2;
    grid-row: 4 / 5;
}

.panel_r_margin {
    grid-column: 3 / 4;
    grid-row: 4 / 5;
} */

.panel

/* .panel_l_margin,
.panel_r_margin */
    {
    background-color: #A4AC86;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}


.person {
    max-width: 15em;
    max-height: 15em;
    border-radius: 50%;
    border: 6px solid #000000;
    outline: 3px solid #000000;
    outline-offset: -12px;
}


.panel_pic_container {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
    justify-self: start;
    margin: 3em 1em 3em 3em;
}

.panel_text_container {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
    justify-self: start;
    font-size: 1.5em;
    line-height: 1em;
    margin: 3em 3em 3em 1em;
}

.panel_pic_container,
.panel_text_container {
    background-color: #A4AC86;
}


h1,
.font1,
.button_styling,
.input_styling,
.input_styling::placeholder {
    font-family: Cormorant Garamond, serif;
}

h1 {
    text-align: center;
    font-size: 3em;
    margin: 0;
}


.font2,
h2,
.contactFormError {
    font-family: Josefin Sans, sans-serif;
}


p {
    background-color: #A4AC86;
}

li {
    font-family: Josefin Sans, sans-serif;
}

.button {
    grid-column: 1 / 4;
    grid-row: 5 / 6;
    margin-top: 5em;
    margin-bottom: 2em;
    justify-self: center;
    align-self: center;
    cursor: pointer;
    display: grid;
    grid-template-columns: 1;
    grid-template-rows: 2;
    background-color: transparent;

}

.button_styling {
    display: block;
    font-size: 1.5em;
    padding: 0.30em 1em;
    border: 3px solid #000000;
    outline: 1px solid #000000;
    outline-offset: -6px;
    background-color: #FFFFFF;
    margin-bottom: 1em;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#olderPosts {
    justify-self: center;
    align-self: center;
}

.footer {
    text-align: center;
    /* justify-self: center;
    align-self: end; */
    font-size: 1.5em;
    /* grid-column: 1 / 4;
    grid-row: 6 / 7; */
    margin-top: 4em;
    margin-bottom: 0.5em;
}





/* how to make double underline text with different lengths and thickness using only css*/

/* .lukas {
    padding: 0.5em 1em;
    position: relative;
    display: inline-block;
    border-bottom: 3px solid black;
    background-color: #C2C5AA;
}

.lukas::before,
.lukas::after {
    content: "";
    position: absolute;
    bottom: -6px;
    height: 1px;
    background-color: black;
}

.lukas::before {
    width: 80%;
    right: 10%;
    left: 10%
}

.lukas::after {
    width: 40%;
    left: 50%
} */