/*
Theme Name: Zesty Theme
Author: Your Name
Version: 1.0
*/

*
{
    margin: 0px;
    padding: 0px;
}

body
{
    background-color: #F0C080;
}

.main_container
{
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 1000;
}

.top_container
{
    border-radius: 8px;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    font-size: 32px;
    font-family: "Luckiest Guy";
    background-color: #C08010;
    width: calc( 100% - 2rem );
    height: 48px;
    margin-left: 1rem;
    margin-top: 1rem;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.lower_container
{
    display: flex;
    flex-direction: row;
    height: calc( 100% - 48px - 2rem );
    width: 100%;
}

.left_container
{
    border-radius: 8px;
    background-color: #c08010;
    width: calc( 300px - 2rem );
    height: calc( 100% - 1rem );
    margin: 1rem;
    margin-top: 0rem;
}

.right_container
{
    width: calc( 100% - 300px - 1rem);
    margin-right: 1rem;
    margin-bottom: 1rem;
    margin-left: 300px;
    padding-top: calc( 48px + 1rem );
}

.post
{
    border-radius: 6px;
    display: flex;
    flex-direction: row;
    background-color: #c08040;
    width: 1000px;
    height: 300px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    margin-bottom: 1rem;
}