:root {
    --background-color-main: #181c28;
    --background-color-secondary: #242a42;
    --background-color-text: #23263a;
    --button-background-color: #303030;
    --text-color: #f0f0f0;
}

body {
    font-family: sans-serif;
    display: flex;
    background-color: var(--background-color-main);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

* {
    color: var(--text-color) !important;
}

#toggleSidebar{
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: var(--button-background-color);
    cursor: pointer;
    display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: calc(2.5vw + 2.5vh);
    height: calc(2.5vw + 2.5vh);
    font-size: 2rem;
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    z-index: 1000;
}



#sidebar {
    width: 20%;
    height: 100%;
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    background-color: var(--background-color-secondary);
    padding-top: calc(2.5vw + 2.5vh + 1rem);
    padding-left: .5rem;
}

#sidebar li {
    cursor: pointer;
    margin-top: 0.4rem;
}
#sidebar p {
    color: #818181 !important;
}
#content {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 45%;
    height: 100vh;
    max-height: 100vh;
    overflow-y: auto;
    background-color: var(--background-color-text);
    border-radius: 5px;
}

#content p {
    line-height: 1.2;
}

#header{
    width: 100%;
    padding-top: 5px;
    margin-bottom: 20px;
    text-align: center;
}

#text {
    width: 95%;
    margin-left: 2.5%;
    height: 80%;
    max-height: 80%;
    padding: 10px;
    background-color: var(--background-color-text);
    border-radius: 15px;
    border: none;
    resize: none;
    color: var(--text-color);
}

@media (orientation: portrait){
    :root{
        font-size: 150%;
    }
    #sidebar{
        width: 40%;
    }
    #content{
        width: 90%;
    }
    #content p{
        line-height: 1.5;
    }
}

textarea { width: 100%; height: 300px; }