body {
    background-color: #534a3e;
    font-family: 'Cherry Swash';
}


.content {
    justify-content: flex-end;

}

.container {
    width: 700px;
    height:95vh;
    background-color: rgba(255, 255, 255, 0);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 15px 15px 0px 0px;
    outline: 1px papayawhip dashed;
    outline-offset: 10px;
}

header {
    width:100%;
    min-height:250px;
    background-position: center;
    background-image: url(img/head.jpg);
    background-color: #534a3e;
    background-size: cover;
    border-radius: 15px 15px 0px 0px;
    filter: sepia(100%);
    box-sizing: border-box;
    display:flex;
    align-items: flex-end;
    justify-content: flex-end;
    color:papayawhip;
}

header h1 {
    margin: 0px;
    font-style: italic;
    font-size: 2.6em;
    background-color: #534a3ee3;
    box-sizing: border-box;
    padding: 10px;
    border-top-left-radius: 10px;
}

nav {
    width:100%;
    height: fit-content;
    background-color: white;
    text-align: right;
    box-sizing: border-box;
    padding:5px;
}
nav li {
    list-style-image: none;
    display: inline;
    margin-left: 20px;
    background-color: papayawhip;
    border: solid 1px rgb(214, 200, 176);
    color: #534a3e;
    box-sizing: border-box;
    padding:10px;
    border-radius: 20px;
    font-size: 1em;
}

.entry h1 a {
    color:#7e6a4f;
    text-decoration: none;
}

.entry h1:hover {
    font-style: italic;
}

nav li a{
    color: #534a3e;
    text-decoration: none;
}

nav li:hover {
    font-style: italic;
}


.bodycont {
    background-color: white;
    height: 100%;
    width:100%;
    box-sizing: border-box;
    padding:10px;
    display: flex;
    flex-direction: column;
    overflow-y: scroll;
}

.entry {
    width: 100%;
    height: fit-content;
    border: 1px solid rgb(214, 200, 176);
    background-color: papayawhip;
    color: #534a3e;
    border-radius: 10px;
    box-sizing: border-box;
    padding:10px;
    margin-bottom: 20px;
    font-family: arial;
    font-style: italic;
}

.entry:last-child {
margin-bottom: 0px;
}

.entry h1 {
    margin: 0px;
    margin-bottom: 10px;
    font-family: 'Cherry Swash';
    font-style: normal;
}

.entry h1::before {
    content: url(img/folderclosed.gif);
    margin-right: 10px;;
}

.entry h1:hover::before {
    content: url(img/folderopen.gif);
    margin-right: 10px;
}