@font-face {
    font-family: ReconFontFamily;
    src: url(fonts/recon___.ttf);
}

@font-face {
    font-family: hrkt;
    src: url(fonts/hrkt.ttf)
}

@font-face {
    font-family: cmc;
    src: url(fonts/cmc.ttf)
}

@font-face {
    font-family: faqro;
    src: url(fonts/Faqro.ttf)
}

@font-face {
    font-family: code;
    src: url(fonts/mrvcode.ttf)
}
@font-face {
   font-family: Jogan;
   src: url(fonts/jogan.ttf)
}
/* these are the main colors and header image
   replace them with anything you want! */
:root {
    --site-bg: url('images/bg1.jpg');
    --main-bg: url('images/bg1.jpg');
    --accent-color: #c1c0b9;
    --link-color: #537791;
    --bg-color: #d3d3d3;
    --text-color: #c1c0b9;
    --text-color2: #c1c0b9;
    --favorite-color: #c1c0b9;

}
/* this theme mostly uses default css colors, but you can get hex codes from sites like this:
   https://palettes.shecodes.io/
   i just looked up "css color templates" to find that link! */

/* this applies to all the content */
  *{
    color: var(--text-color);

/* custom scrollbars don't appear for all browsers, but i like setting them anyway */
    scrollbar-color: var(--favorite-color) var(--bg-color);
    scrollbar-width: thin;
}
/* this is for when you select text on the page */
::selection {
    background: var(--favorite-color);
    color: var(--bg-color);
}

html {scroll-behavior: smooth;}

body {
    margin: 0;
    background-color: var(--bg-color);
    background-image: var(--site-bg);
/* you can add a background-position if you don't want it to be top left! this one is set to not tile */
    background-repeat: repeat;
}

/* i think having better line spacing helps text to be more readable, but you can remove it if you want */
p {line-height: 1.5em;}

/* this is your site title displayed at the top of the page */
header > h1 {
    font-family: ReconFontFamily, Courier New, courier, monospace;
    margin: 1em auto;
    max-width: 960px;
    padding-left: 1em;
/* you can change the text-align to center or right if you want it placed differently */
    text-align: center;
    color: var(--text-color2);
}
nav {
    padding: 0 1em 1em 1em;
  
}

nav ul {
    max-width: 960px;
    margin: auto;
    line-height: 3rem;
/* this stuff makes it wrap around on mobile */
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
/* this line takes away the dot in front of the list items */
    list-style-type: none;
/* list items have default padding but we don't need it for these */
    padding-left: 0;
/* and this spaces out the buttons so they're not touching */
    justify-content: space-evenly;
}
nav li a {
    background-color: var(--bg-color);
    border: 5px inset #f7f6e7;
    padding: .5em 3em;
/* this takes away the link underline */
    text-decoration: none;
/* and this part is animation! */
    transition: color 150ms ease-out, border-color 150ms ease-out;
}
nav li a:hover {
    border: 5px inset #c1c0b9;
}

a {
    color: var(--text-color2);
    transition: color 150ms ease-out;
}
a:visited {
    color: var(--favorite-color);
}
a:hover {
    color: var(--text-color);
}

/* you can change this to lots of things. i picked a star! */
ul { list-style-type: "◘ "; }

* {
    box-sizing: border-box;
}

h3 {
    text-align: center;
}



/** SECTIONS **/

#wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding-top: auto;
    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;
    border: 5px outset #f7f6e7;
    background-color: var(--bg-color);
    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 {
   border: 5px outset #c1c0b9;
    color: white;
}

.tabs_label {
    order: 0;
}

.tabs_radio:checked+.tabs_content {
    display: initial;
}

.sec {
    padding: 1em;
    background: var(--site-bg);
    border: 5px outset #f7f6e7;
    height: 600px;}
}

/** ART SECTION **/

.art .sec {
    max-width: 500px;
}

.art_content, .art_radio {
    display: none;
}

.artimg {
    border: 5px inset #f7f6e7;
    object-fit: scale-down;
    max-width: 100%;
    overflow: auto;
    margin: 0;
   
}

.art_radio:checked+.art_content {
    display: initial;

}

.container {
    height: 100%;
    overflow: auto;
    padding: 1em;
    margin: 0.5em;
}

.tiny {
  
  size: 3em;
  border: 5px;
  inset: #f7f6e7;
}

.art .container {
    padding: 1em;
    margin: 1em;
    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: 5px inset #f7f6e7;
    filter: brightness(90%);
    transition-duration: 0.5s;
}
.desc p {
    height: auto;
    border: 5px inset #f7f6e7;
    max-width: 100%;
    overflow: auto;
    text-align: center; 
    color: #2EFF2E;
    background: url("images/noimg.gif"); filter: brightness(90%);

}
/*gray*/
.dark {
    --site-bg: url('images/bg1.jpg');
    --main-bg: url('images/bg1.jpg');
    --accent-color: #c1c0b9;
    --link-color: #537791;
    --bg-color: #dedede;
    --text-color: #c1c0b9;
    --text-color2: #c1c0b9;
    --favorite-color: #c1c0b9;
}