* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: row;
    width: 100vw;
    height: 100vh;
}

nav {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 15%;
    height: 100%;
    padding: 10px;
    border-right: 1px solid rgb(113, 113, 113);
}

nav ul {
    width: 100%;
    height: 100%;
}

nav #footer {
    height: 5%;
    background-color: rgb(37, 37, 37);
    border-radius: 5px;
}

nav ul li {
    list-style: none;
    width: 100%;
    height: 50px;
    margin-bottom: 20px;
    background-color: rgb(172, 178, 178);
    border-radius: 5px;
}

main {
    width: 65%;
    height: 100vh;
}

main header {
    height: 5%;
    border-bottom: 1px solid rgb(113, 113, 113);
}

#posts_container {
    padding: 10px;
    width: 100%;
    height: 100%;
    overflow: scroll;
}

.post {
    background-color: rgb(205, 193, 193);
    height: 200px;
    margin-bottom: 10px;
    padding: 10px;
    border-radius: 5px;
}

#posts li {
    list-style: none;
}

aside {
    width: 20%;
    height: 100%;
    border-left: 1px solid rgb(113, 113, 113);
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
}

aside #search_bar {
    height: 5%;
    margin-bottom: 20px;
    background-color: rgb(172, 178, 178);
    border-radius: 30px;
}

aside .trending-item {
    list-style: none;
    background-color: rgb(205, 193, 193);
    height: 100px;
    margin-bottom: 10px;
    border-radius: 5px;
}