body {
    background-color: #FFFFE8;
    font-family: 'IBM Plex Mono', monospace;
    color: #492828;
}

.title, h4 {
    text-align: center;
    margin-bottom: -5px;
    margin-top: 5px;
}

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

a:hover {
    color: #AACB73;
}

header {
    text-align: center;
}

nav {
    position: fixed;
    width: 200px;
    height: max-content;
    margin-left: 75px;
    border: 1px solid #492828;
    box-shadow: #AACB73 5px 5px;
    font-size: .85em;
}

.navlinks ul {
    list-style-type: none;
    margin-left: -30px;
}

.chatbox {
    height: 220px;
    border: 1px solid #492828;
    box-shadow: #AACB73 5px 5px;
    font-size: .85em; 
    padding: 5px;
    margin-top: -10px;
}

main {
    margin: auto;
    width: 800px;
}

.nav {
    display: flex;
    justify-content: space-evenly;
}

.nav a {
    border: 1px solid #492828;
    box-shadow: #AACB73 5px 5px;
    font-size: .85em; 
    padding: 5px;
    text-align: center;
    
    &:hover, :active {
        color: #AACB73;
    }
}

.mainp1 {
    border: 1px solid #492828;
    padding: 5px; 
    height: max-content;
    font-size: .85em;
    box-shadow: #AACB73 5px 5px;
}

.mainp1 p {
     margin-left: 5px;
}

.mainp1 a:hover {
    text-decoration: underline;
}

aside {
    display: grid;
    grid-gap: 10px;
    grid-template-columns: 1.75fr 1.5fr 1.75fr;
}

.update {
    grid-row: 1 / 2;
    grid-column: 1 / 2;
    border: 1px solid #492828;
    padding: 5px; 
    height: 135px;
    font-size: .85em;
    box-shadow: #AACB73 5px 5px;
}

.updatelist {
    margin-top: 10px;
    margin-left: 5px; 
    height: 100px;
    overflow-y: scroll;
}

.currently {
    grid-row: 1 / 2;
    grid-column: 2 / 3;
    border: 1px solid #492828;
    padding: 5px;
    font-size: .85em;
    box-shadow: #AACB73 5px 5px;
}

.currentlylist ul {
    list-style-type: none;
    margin-left: -30px;
    margin-top: 32px;
    white-space: nowrap;
    line-height: 1.5;
}

.icon {
    vertical-align: bottom;
}

.todo {
    grid-row: 1 / 2;
    grid-column: 3 / 4;
    border: 1px solid #492828;
    padding: 5px;
    font-size: .85em;
    box-shadow: #AACB73 5px 5px;
}

.todolist {
    margin-top: 10px;
    margin-left: -25px;
    height: 100px;
    overflow-y: scroll;
}

footer {
    text-align: center;
    font-size: 0.75em;
    line-height: .75;
    margin-top: 25px;
}

@media (max-width: 850px) {
    main {
        width: 600px;
    }
    .currently {
        width: 200px;
    }
}

@media (orientation: portrait) {
    aside {
        display: inline-block;
    }
    .currently {
        width: auto;
    }
    .todo {
        margin-bottom: 35px;
    }
}