
@import url('https://fonts.googleapis.com/css2?family=Inclusive+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Capriola&display=swap');


* {
    box-sizing: border-box;
}

/* Custom Font */




/* General Styles */
html, body {
  height: 100%;
  margin: 0;
}

body {
  font-family: 'Inclusive Sans', sans-serif;
  font-size: 18px; 
  background-color: #999B85;
  background-size: 65px;
  color: #40474D;
    min-width: 800px;
}


h1, h2 {
  font-family: 'Capriola', sans-serif;
    color: #312247;
    font-weight: bold;
    text-align: center;
}

h3 {
  font-family: 'Capriola', sans-serif;
    text-align: center;
}

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

a:visited, a:link {
    color: #b9382a;
    font-weight: bold;
    text-decoration: underline 1px;
    text-decoration-skip: ink;}

a:hover {
    color: #1A2EAB;
    font-weight: bold;
    text-decoration: underline 1px;
}

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


/** SECTIONS **/

#wrapper {
    display: flex;
    width: 100%;
    min-height: 100%;
    margin: 0 auto;
    padding-top: 3em;    
    justify-content: center;}


/** ELEMENTS **/
.art {
    width: 800px;
    padding: 2em;
    /** background-color: yellow; **/
}

.navigation {
    display: flex;
    flex-direction: row;
    justify-content: center;
    min-width: 25%;
    max-width: 35%;
    padding: 2em;
    
}

.navigation .list {
    display: flex;
    flex-direction: column;
}

.navigation .list label {
  display: flex;
  font-weight: bold;
    padding: 15px 15px;
    margin-bottom: 10px;
    background-color: #D0C5AE;
    width: 100%;
    writing-mode: vertical-lr;
    align-items: center;
    transform: rotate(180deg);
}

.tabs_radio, .tabs_content {
    display: none;
}

.tabs_content {
    order: 1;
}

.list label:hover {
    background-color: #312247;
    color: #D94838;
}

.tabs_label {
    order: 0;
}

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

/* THIS IS THE SECTION YOU WANT FOR MAKING THE PAGE TALLER I LOVE YOU */ 

.sec {
    padding: 1em;
    background-color: #D6D1C7;
    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;
}

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

label img {
    height: 80px;
    width: 80px;
    margin: 1em;
    border: thin dashed brown;
    box-shadow: 5px 5px rgba(214, 147, 159, 50%);
    filter: brightness(90%);
    transition-duration: 0.5s;
}

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