

* {
    box-sizing: border-box;
}

/** font stuff **/

body {
    background-image: url("https://files.catbox.moe/ovon43.gif");
    font-family: "Pixelify Sans", sans-serif;
    font-size: 18px;
    color: #ffffff;
    min-width: 800px;
}
h1, h2 {
    font-family: "Pixelify Sans", sans-serif;
    color: #ffffff;
    font-weight: bold;
    text-align: center;
}

h3 {
    font-family: "Pixelify Sans", sans-serif;
    text-align: center;
}

.special {
    font-family: "Pixelify Sans", sans-serif;
    color: #cdcdcd;
    font-weight: bold;
}

a:visited, a:link {
    font-family: "Pixelify Sans", sans-serif;
    color: #ffffff;
    font-weight: bold;
    text-decoration: underline 3px;
    text-decoration-color: #969094;
    text-decoration-skip: ink;}

a:hover {
    font-family: "Pixelify Sans", sans-serif;
    color: #6f6c6e;
    font-weight: bold;
    text-decoration: underline 3px;
}

ul {
    list-style-image: url("https://litter.catbox.moe/su4kk4t81sjxiyn3.webp");
}


/** SECTIONS **/

#wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-top: 3em;
    justify-content: center;}


/** ELEMENTS **/
.art {
    width: 600px;
    padding: 2em;
    background-color: #4e4c4d;
    /** background-color: yellow; **/
}

.navigation {
    background-color: #4c4c4c;
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-width: 25%;
    max-width: 35%;
    padding: 2em;
    /** background-color: red; **/
}

.navigation .list {
    display: flex;
    flex-direction: column;
}

.navigation .list label {
    padding: 10px 16px;
    margin-bottom: 10px;
    background-color: #4c4c4c;
    width: 100%;
    writing-mode: vertical-lr;
    text-align: center;
    transform: rotate(180deg);
}

.tabs_radio, .tabs_content {
    display: none;
}

.tabs_content {
    order: 1;
}

.list label:hover {
    background-color: #2f2f2f;
    color: white;
}

.tabs_label {
    order: 0;
}

.tabs_radio:checked+.tabs_content {
    display: initial;
}

.sec {
    padding: 2em;
    background-color: #000000;
    box-shadow: 5px 5px #ffffff;
    filter: brightness(110%);
    height: 600px;}
}

/** ART SECTION **/

.art .sec {
    max-width: 500px;
}

.art_content, .art_radio {
    display: none;
}

.artimg {
    object-fit: scale-down;
    max-width: 100%;
    overflow: auto;
   
}

.art_radio:checked+.art_content {
    display: initial;

}

.container {
    height: 100%;
    overflow: auto;
    padding: 1em;
    margin: 0.5em;
}

.art .container {
    padding: 0em;
    margin: 0em;
    overflow: auto;
    text-align: center;
    font-family: "Pixelify Sans", sans-serif;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

label img {
    height: 80px;
    width: 80px;
    margin: 1em;
    border: thin dashed #000000;
    box-shadow: 5px 5px #000000;
    filter: brightness(90%);
    transition-duration: 0.5s;
}

label img:hover {
    transform: scale(115%);
    transition-duration: 0.5s;
}