@font-face {
    font-family: 'goudy_bookletter';
    src: url('fonts/GoudyBookletter1911-Regular.woff2'), local('fonts/GoudyBookletter1911-Regular.woff2'), format('woff2');
}
@font-face {
    font-family: 'goudy_ini';
    src: url('fonts/GoudyInitialen.woff2'), local('fonts/GoudyInitialen.woff2'), format('woff2');
}

body {
    background-color: #D8D8D8; /*#3F4F44*/
    color: #729762;
    margin: 0;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 300px 1fr 300px;
    grid-template-rows: 200px 1fr;
}

a:link {
    color: #F08F90;
}
a:visited {
    color: #AC8181;
}
a:hover {
    color: #DB5A6B;
}

header {
    position:fixed;
    grid-area: 1 / 1 / 2 / 4;
    top: 0;
    left: 0;
    height: auto;
    overflow-y: visible;
    width:100%;
    background-color: #2C3930;
    color:#FFF6E0;
    z-index: 3;
}

footer {
    grid-row: -1;
    grid-column: 1 / 4;
    text-align: center;
    color:#FFF6E0;
    background-color: #2C3930;
    padding: 10px 0;
    width: 100%;
    z-index: 3;
    position: relative;
    margin-top: auto;
}

.content {
    grid-area: 1 / 2 / 3 / 3;
    min-width: 500px;
    text-indent: 10px;
    padding-top: 20px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 100px;
    background-color: #D8D8D8;
    color: #3F4F44;
    z-index: 1;
    overflow-y: auto;
    display: grid;
    grid-template-rows: 1fr 3fr;
    position: relative;
}

.review {
    grid-area: 2 / 1 / 2 /4;
    text-indent:0;
}

.story {
    margin-top: 10px;
    grid-area: 3 / 1/ 4 /4;
    display: none;
    line-height: 1.5;
}

.toggle_container {
    position: relative;
    top: 10px;
    z-index: 10;
    background: #D8D8D8;
    padding: 5px 10px 5px 10px;
    border: 1px groove #3F4F44;
    width:fit-content;
    margin: 0;
    border-radius: 10px;
}

.story_1 {
font-family: 'goudy_bookletter';
font-size: 27px;
font-weight: 500;
}

.story_1::first-letter {
font-family: 'goudy_ini';
font-size: 150px;
float: inline-start;
}

.story_rest {
font-family: 'goudy_bookletter';
font-size: 27px;
text-indent: 20px;
font-weight: 500;
}