/*PROTOMO*/ 
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;900&family=Sigmar&display=swap');

:root  {
    --one: #8885c9;
    --two: #cd9ecd;
    --three: #330066;
    --four: #A86394;
    --five: #E6CADF; /*ab7cab*/ /*cd9ecd*/
    --six: #660099;
}


body {
    background: var(--one);
    font-family: 'Nunito';
    font-size: 13px;
    color: var(--three)
}
a {
    text-decoration: none;
}
p{
    margin: 10px 15px
}
h1 {
    font-size: 25px
}
h2 {
    color: var(--six);
}
h3 {
    color: var(--six)!important;
    margin: -8px 0px 0px;
    font-size: 14px;
}
h4 {
    color: var(--two)!important;
    margin-top: 0px;
    font-size: 12px;
    font-style: italic;
}
#container {
    min-height: 750px;
    width: 900px;
    margin: 50px auto;
}
#foreground {
    position: absolute;
    pointer-events: none !important;
    opacity: 1;
    z-index: 5;
}
#everything {
    background: var(--two);
    height: 490px;
    width: 800px;
    position: relative;
    top: 190px;
    left: 50px;
    border-radius: 60px 90px 60px 60px;
}
#other-contents {
    display: flex;
    height: 425px;
    border-radius: 40px;
}
#left-bar {
    width: 165px;
    margin-left: 15px;
}
#navi-box {
    height: 185px;
    width: 125px;
    margin-top: 96px;
    margin-left: 20px;
    overflow: auto;
}
#navi-list {
}
.navi-button {
    background: var(--five);
    height: 25px;
    font-size: 14px;
    color: var(--three);
    text-align: center;
    text-decoration: none;
    padding-top: 5px;
    border: 2px solid var(--two);
    border-radius: 15px
}
#desc-box {
    height: 126px;
    margin-top: 18px;
    overflow: auto
}
/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~ ----- ~~~~~~~~~~~~~ >
-----       TAB SYSTEM       -----
~~~~~~~~~~~~~ ----- ~~~~~~~~~~~~~ >
*/
.tab-content {
    display: none;
}
.tab-content.active {
    display:inherit
}
#content-box {
    width: 585px;
    margin-left: 18px
}
.section-window {
    width: 100%;
    height: 100%;
    overflow: auto;
    text-align: center;
}
.section-window--thumblist {
    min-height: 100px;
    margin-top: 15px;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}

/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~ ----- ~~~~~~~~~~~~~ >
-----       DROPDOWN       -----
~~~~~~~~~~~~~ ----- ~~~~~~~~~~~~~ >
*/
#art-portal{
    height: 50px;
    width: 650px;
    margin: auto;
    display: flex;
    justify-content: center;
}
.art-portal--button {
    background: var(--two);
    height: 50px;
    width: 150px;
    font-size: 18px;
    color: var(--three);
}
.art-portal--button:hover {
    font-size: 18px;
    color: var(--four);
}
/* Style The Dropdown Button */
.dropbtn {
    border: none;
    cursor: pointer;
}

/* The container <div> - needed to position the dropdown content */
.dropdown {
    position: relative;
    display:inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--five);
    min-width: 160px;
    z-index: 80;
    border-radius: 5px 25px 25px 25px;
    min-height: 50px;
}

/* Links inside the dropdown */
.dropdown-content a {
    display: block;
    background: var(--two);
    text-decoration: none;
    height: 25px !important;
    border-radius: 15px;
    text-align: center;
    margin: 10px;
    padding-top: 5px;
    color: var(--three);
    font-size: 14px;
}

/* Change color of dropdown links on hover */
.dropdown-content a:hover {
    background-color: var(--one);
    color: var(--five);
    transform: scale(0.90);
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}





/*
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

~~~~~~~~~~~~~ ----- ~~~~~~~~~~~~~ >
-----       THUMBNAILS       -----
~~~~~~~~~~~~~ ----- ~~~~~~~~~~~~~ >
*/
.thumbnail-list {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
.thumb-border-0 {
    background: var(--five);
    height: 210px;
    width: 170px;
    margin-bottom: 15px;
    border-radius: 10px 10px 30px 30px;
}
.thumbnail {
    height: 150px;
    width: 150px;
    object-fit:contain;
    margin: 8px;
}