:root {
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    font-size: 16px;

    --color1: #22577a;
    --color2: #38a3a5;
    --color3: #57cc99;
    --color4: #5cb872;
    --color5: #80b685;
}

body {
    margin: 0;

    image-rendering: pixelated;
    background-image: url(/images/leaves.gif), url(/images/bg1.png);
    background-position: center, center;
    background-attachment: fixed, fixed;
    background-size: 256px, cover;
}

h1, h2, h3 {
    margin: 0;
}

ul {
    margin: 0;
    padding: 0;
}

li {
    list-style-image: url("/images/flower.png");
    margin-left: 25px;
    text-wrap: pretty;
}

summary:hover {
    cursor: pointer;
}

a:link {
    color: white;
}

a:visited {
    color: white;
}

.custom-a:hover::before {
    content: "> ";
}

a:hover {
    color: yellow;
}

a:active {
    color: white;
}

.main-container {
    display: flex;
    flex-direction: column;
    max-width: 800px;
    margin: 0 auto;
    padding: 10px;
}

.left-container {
    width: 20%;
    min-width: 128px;
    height: fit-content;
}

.container-1 {
    width: 80%;
    height: fit-content;
}

.container-2 {
    display: flex;
    flex-direction: row;
    gap: 5px;
    width: 100%;
    height: fit-content;
    flex-wrap: nowrap;
}

.container-2-left {
    flex: 50%; 
    box-sizing: border-box;
}

.container-2-right {
    flex: 50%; 
    box-sizing: border-box;
}

@media screen and (max-width: 600px) {
    .container-2 {
        flex-direction: column;
    }

    .container-2-left {
        flex: 100%;
    }

    .container-2-right {
        flex: 100%;
    }
}

.blog {
    background-color: var(--color3);
    display: flex;
    flex-direction: row;
    height: fit-content;
    background-blend-mode:color-burn;
    background-image: url("/images/bg1.png");
    background-size: cover;
}

.stats {
    background-color: #38a3a5;
    height: fit-content;
    padding: 10px;
}

.stats-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0px 10px;
}

.art-main {
    background-color: var(--color3);
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.art-piece {
    width: 100%;
    height: fit-content;
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.art-picture {
    width: 60%;
}

.art-text {
    width: 40%;
}

.blog-content {
    max-height: 100%;
    width: 75%;
    padding: 10px;
}

.blog-list {
    max-height: 522px;
    width: 25%;
    padding: 10px;
    overflow-y: scroll;

    background-color: var(--color1);
}

.updates {
    padding: 10px;
    background-color: var(--color4);
}

.todo {
    padding: 10px;
    background-color: var(--color5);
}

.newblog {
    padding: 10px;
    background-color: var(--color1);
}

.content {
    display: flex;
    flex-direction: row-reverse;
    gap: 5px;
}

.header {
    font-family: "Comic Sans MS";
    text-align: center;
    padding: 10px;
    height: fit-content;
    background-color: var(--color1);
    background-image: url(/images/flower.png);
    background-repeat: repeat-x;
    background-size: contain;
    background-position: 50% 50%;
    image-rendering: pixelated;
    background-blend-mode:soft-light;
}

.welcome {
    background-color: var(--color3);
    padding: 10px;
}

.navbar {
    padding: 10px;
    width: 100%;
    height: fit-content;
    padding-bottom: 48px;
    background-color: var(--color2);
    background-image: url(/images/capywalk.gif);
    background-repeat: repeat-x;
    background-position-y: 100%;
    background-size: 64px;
    image-rendering: pixelated;
}

.box {
    border-style: solid;
    border-color: white;
    border-width: 2px;
    box-sizing: border-box;
    margin: 5px;
    box-shadow: 5px 5px rgba(0, 0, 0, 0.15);
}

.border {
    border-style: solid;
    border-color: white;
    border-width: 2px;
    box-sizing: border-box;
}

.capy {
    background-image: url(https://www.rainforest-alliance.org/wp-content/uploads/2021/06/capybara-square-1.jpg.optimal.jpg);
    background-size: cover;
    background-position: 50% 50%;
    width: 100%;
    height: 200px;
}

.readable {
    background: rgba(0, 0, 0, 0.15);
}