*, *::before, *::after {
    box-sizing: border-box;
}

body {
    background-color: #FFFFFF;
    color: black;
    min-height: 100vh;
    margin: 0;
    position: relative; 
}

a {
    color: #623B20;
}
a:hover {
    color: blue;
    text-decoration: none;
}

#bottom {
    width: 99%;
    bottom: 0%;     
    position: absolute; 
    left: 1%;
}

#left {
    top:1%;
	bottom: 0;
    width: 2%;
    left: 1%;
    position: fixed;
    padding: 5px;
	display: flex; 
    flex-direction: column; 
    justify-content: flex-end; 
}

#middle {
    position: absolute;
    top: 1%;
    left: 4%;         
    width: 24%;
    padding: 10px 10px 10px 5px;
    box-sizing: border-box;
	text-align: left;
}

#right {
    position: absolute;
    top: 1%;
    left: 26%;         
    width: 74%;
    padding: 10px;
    box-sizing: border-box;
}

#rightright {
    width: 2%;
    position: absolute;
    top: 1%;
    right: 1%;  
    border-radius: 8px;
    padding: 15px;
}