:root
{
    --text-color: #5c7227;
    --background-color: #f0e8df;
}

body 
{
    background-color: var(--background-color);
    color: var(--text-color);
    font-family: monospace;
    text-align: center;
    margin: 0;
    line-height: 1.5;
}

#left-sidebar
{
    /* background-color: lime; */
    /* border: 2px solid red; */

    text-align: left;
    position: fixed;
    top: 80px;
    left: 60px;
    width: 200px;
    height: calc(100vh - 160px);
}

#right-sidebar
{
    /* background-color: lime; */
    /* border: 2px solid red; */

    text-align: left;
    position: fixed;
    top: 80px;
    right: 60px;
    width: 200px;
    height: calc(100vh - 160px);
}

#main
{
    /* background-color: lime; */
    /* border: 2px solid red; */
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: 600px;
    padding: 40px 20px;
}

a 
{
color: var(--text-color);
text-decoration: none;
}

a:hover
{
    text-decoration: underline;
}

#cat
{
    margin: 80px auto;
    max-width: 100%;
    max-height: 80vh;
    height: auto;
    width: auto
}

#new-cat
{
    position: fixed;
    top: 60px;
    left:50%;
    transform: translateX(-50%);
}