

* {
    box-sizing: border-box;
}

/** font stuff **/

body {
    background-color: #e6f5e7;
    font-size: 14px;
    color: #394477;
    min-width: 800px;
}
h1, h2 {
    color: #666699;
    font-weight: bold;
    text-align: center;
}

h3 {
    text-align: center;
}

.special {
    color: #2f915c;
    font-weight: bold;
}

a:visited, a:link {
    color: #62b48b;
    font-weight: bold;
    background: linear-gradient(to bottom, rgba(255,255,255,0) 40%,rgba(246,199,229,0.7) 50%, rgba(246,199,229,0.7) 70%, rgba(255,255,255,0) 71%);
    text-decoration: underline 3px;
    text-decoration-color: rgb(93, 184, 168);
    text-decoration-skip: ink;}

a:hover {
    color: #2f915c;
    font-weight: bold;
    text-decoration: underline 3px;
}

ul {
    list-style-type: "*";
}


/** 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: yellow; **/
}

.navigation {
    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: whitesmoke;
    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: rgb(124, 187, 177);
    color: white;
}

.tabs_label {
    order: 0;
}

.tabs_radio:checked+.tabs_content {
    display: initial;
}

.sec {
    padding: 2em;
    background: url(img/hip-square.png);
    box-shadow: 5px 5px rgba(88, 113, 141, 0.5);
    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: "Roboto Mono";
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

label img {
    height: 80px;
    width: 80px;
    margin: 1em;
    border: thin dashed rgb(52, 54, 146);
    box-shadow: 5px 5px rgba(88, 113, 141, 0.5);
    filter: brightness(90%);
    transition-duration: 0.5s;
}

label img:hover {
    transform: scale(115%);
    transition-duration: 0.5s;
}