*{
    padding: 0;
    margin: 0;
    text-decoration: none;
    font-family: 'Monaco', sans-serif;
    font-size: 15px;
    /*background-color: rgb(253, 253, 253);*/
}
:root{
    /*color-scheme: light dark;*/
    --light-bg-color: rgb(253, 253, 253);
    --light-txt-color:black;
    --light-hr-color: silver;
    --light-shadow-color:  rgba(66, 68, 90, 1);
    --light-hover-color: rgb(238, 238, 238);
    --light-border-color: silver;
    --dark-bg-color: rgb(38, 38, 38);
    --dark-txt-color: rgb(234, 234, 234);
    --dark-hr-color: rgb(89, 89, 89);
    --dark-shadow-color: rgba(48, 49, 55, 1);
    --dark-hover-color: rgb(26, 26, 26);
    --dark-border-color: rgb(89, 89, 89);
}
body{
    text-align: center;
    background-color: rgb(253, 253, 253);
}
.darkmode{
    background-color: rgb(38, 38, 38);
    color: rgb(234, 234, 234);
}
a{
    display: block;
    color: black;
}
hr{
    color: silver;
}
select{
    background-color: whitesmoke;
    border: 1px solid silver;
}
option{
    background-color: whitesmoke;
}
option:focus{
    background-color: rgb(253, 253, 253);
    color: black;
}
header{
    width:100% ;
    min-height: 10vh;
    /*background-color: rgb(253, 253, 253);*/
    box-shadow: 0px 15px 30px -13px rgba(66, 68, 90, 1);
    /*position: sticky;
    top: 0px;
    z-index: 100;*/
}
#logo_div_desktop{
    width: 17vw;
    height: 7.5vh;
    padding-right: 1vw;
    float: left;
    /*border-right: 1px solid silver;
    background-color: rgb(253, 253, 253);*/
}
#logo_div_mobile{
    display: none;
    float: left;
    /*background-color: rgb(253, 253, 253);*/
}
.header_logo_pic{
    width: 90%;
    height: 80%;
    padding: 10px;
    margin: 0 auto;
}
/*#header_evil_div{
    width: 5vw;
    float: left;
    border-right: 1px solid silver;
}*/
#header_selection_div{
    width: 79vw;
    height: 7.5vh;
    float: right;
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    /*background-color: rgb(253, 253, 253);*/
    overflow: hidden;
}
.header_option{
    width: 25%;
    text-align: center;
    /*background-color: rgb(253, 253, 253);*/
    border-left: 1px solid silver;
    align-content: center;
}
/*.header_option:hover{
    background-color: rgb(242, 242, 242);
}*/
.header_button{
    width: 100%;
    height: 100%;
    margin: 0 auto;
    /*background-color: rgb(253, 253, 253);*/
    border: none;
    cursor: pointer;
    align-content: center;
}
#header_desktop_hr{
    width: 99.9%;
    display: block;
}
#motd{
    height: 2.5vh;
    width: 99.6%;
    padding: 0.2%;
    text-align: center;
    /*background-color: rgb(253, 253, 253);*/
    overflow: hidden;
}
#header_menu_button{
    display: none;
}
#header_mobile_hr{
    display: none;
}
#header_mobile_menu{
    display: none;
    background-color: rgb(253, 253, 253);
}
/*mobile*/
@media (max-width: 768px) {
    header{
        min-width: 100%;
        min-height: 10vh;
        display: flex;
        flex-flow: row wrap;
    }
    #logo_div_desktop{
        display: none;
    }
    #logo_div_mobile{
        display: block;
        width: 23vw;
        height: 10vh;
        border: 0;;
    }
    .header_logo_pic{
        width: 75%;
        height: 65%;
        padding: 10px;
        margin: 10px auto;
    }
    #header_selection_div{
        display: none;
    }
    .header_option{
        width: 100%;
        height: 10vh;
        border: 0;
        border-bottom: 1px solid silver;
    }
    #header_desktop_hr{
        display: none;
    }
    #motd{
        width: 50vw;
        height: 10vh;
        padding: 5px;
        border-right: 1px solid silver ;
        border-left: 1px solid silver ;
        overflow: scroll;
    }
    #header_menu_button{
        width: 24vw;
        display: block;
    }
    #header_mobile_hr{
        width: 100%;
        display: block;
    }
    #header_mobile_menu{
        width: 100%;
        display: none;
        flex-flow: column;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
    #motd{
        overflow:hidden;
    }
}
main{
    width: 80vw;
    min-height: 100vh;
    margin: 0 auto;
    /*border: 5px solid gray;*/
    overflow: auto;
    padding: 10px;
}
@media (max-width: 768px) {
    main{
        width: 90vw;
    }
}
@media (min-width: 769px) and (max-width: 1024px) {
        main{
        width: 85vw;
    }
}
.main_sub_title{
    width: 90%;
    margin: 10px auto;
    text-align: left;
    font-size: 30px;
    font-weight: bold;
}
.general_button{
    width: 100%;
    height: 100%;
    background-color: rgb(253, 253, 253);
    border: none;
    border-bottom: 1px solid silver;
    cursor: pointer;
    align-content: center;
    font-weight: bold;
}
.general_button:hover, .header_button:hover{
    background-color: rgb(238, 238, 238);
}
footer{
    width: 100%;
    min-height: 10vh;
    border-top: 1px solid silver;
    box-shadow: 0px -5px 30px -9px rgba(66, 68, 90, 1);
    display: flex;
    justify-content: space-around;
}
.footer_section{
    width: 25vw;
}
.footer_section_content{
    margin: 10px auto;
    padding: 5px 0;
}
.footer_section_name{
    margin: 0 auto;
}
.footer_mail{
    margin: 0 auto;
}
#footer_socials{
    width: 50vw;
    padding: 10px;
    border-left: 1px solid silver;
    border-right: 1px solid silver;
    display: flex;
    justify-content: space-around;
}
.footer_socials_option{
    width: 42px;
    height:42px;
    padding: 5px;
}
.footer_section_link{
    margin: 0 auto;
    padding: 10px;
    font-size: 18px;
    text-decoration: underline;
}
#main_description{
    min-height: 100px ;
    margin: 10px;
    padding: 10px;
    font-size: 20px;
    text-align: justify;
    line-height: 1.2;
    word-spacing: 2px;
}
#main_showcase_big{
    min-height: 300px;
    margin: 5px;
    padding: 10px;
    border: 1px solid silver;
    border-radius: 5px;
    box-shadow: 0px 0px 18px -7px rgba(66, 68, 90, 1);
    /*box-shadow: 0px  0px 3px 1px gray;*/
    display: flex;
    flex-wrap: wrap;
}
#main_showcase_big_new_stuff{
    width: 100%;
    font-size: 20px;
    order: -1;
}
#main_showcase_big_title{
    width: 74%;
    margin-left: 1%;
    float: right;
    text-align: left;
    font-size: 25px;
    order: 2;
}
#main_showcase_big_category{
    width: 22%;
    margin-right:3%;
    float: left;
    order: 1;
    text-align: right;
    font-size: 25px;
    /*color: darkgray;*/
}
#main_showcase_big_description{
    width: 100%;
    padding: 0 25px;
    order: 3;
    text-align: justify;
    font-size: 18px;
}
#main_showcase_big_evil_div{
    width: 75%;
    order: 4;
}
#main_showcase_big_button_div{
    float: right;
    width: 20%;
    align-self: flex-end;
    order: 5;
}
#main_showcase{
    /*height: 200px;*/
    margin: 5px;
    padding: 10px;
    border: 1px solid silver;
    border-radius: 5px;
    box-shadow: 0px 0px 18px -7px rgba(66, 68, 90, 1);
    overflow: auto;
}
#main_showcase_title{
    width: 98%;
    margin: 1%;
    float: left;
    font-size: 20px;
}
#main_small_showcases{
    width: 98%;
    margin: 1% 1% 0 1%;
    overflow: auto;
    display: flex;
    flex-flow: column nowrap;
}
.main_showcase_small{   
    padding: 10px;
    margin: 1% 1%;
    float: left;
}
.main_showcase_small_wrapper{
    width: 100%;
    overflow: auto;
    padding: 5px;
}
.main_showcase_small_title{
    width: 75%;
    float: right;
    text-align: left;
    font-size: 20px ;
}
.main_showcase_small_category{
    width: 23%;
    margin-right: 2%;
    float: left;
    text-align: right;
    font-size: 20px ;
    /*color: darkgray;*/
}
.main_showcase_small_description{
    width: 100%;
    margin: 1% 0;
    text-align: justify;
}
.main_showcase_small_button_div{
    width: 20%;
    float: right;
}
.main_showcase_small_button{
    width: 100%;
}
#about_me{
    padding: 10px;
    display: flex;
    flex-flow: column wrap;
}
#main_about_showcase{
    width: 88%;
    margin: 1% 1%;
    padding: 10px;
    border: 1px solid silver;
    border-radius: 5px;
    box-shadow: 0px 0px 18px -7px rgba(66, 68, 90, 1);
    align-self: center;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
}
#main_about_pfp{
    width: 33%;
}
.main_about_picture{
    height: 128px;
}
.main_about_details{
    font-size: 12px;
}
#main_about_linktree{
    width: 33%;
}
#main_about_socials{
    width: 33%;
}
#main_about_socials_wrapper{
    display: flex;
    flex-flow: row wrap;
    justify-content: space-evenly;
    gap: 5px;
}
.main_about_socials_picture{
    width: 64px;
    height: 64px;
}
@media (max-width: 768px) {
    .main_about_picture{
    width: 96px;
    height: 96px;
    }
    #main_about_socials_wrapper{
        gap: 0;
    }
    .main_about_socials_picture{
    width: 48px;
    height: 48px;
    }
}
#main_about_description{
    width: 90%;
    padding: 10px;
    /*height: 550px;*/
    margin: 2% auto;
    align-self: center;
}
.main_about_descripton_text{
    width: 90%;
    margin: 0 auto;
    text-align: justify;
    font-size: 20px;
    line-height: 1.2;
    word-spacing: 2px;
    text-indent: 50px;
}
@media (max-width: 768px) {
    #main_about_description{
        width: 95%;
    }
    .main_about_descripton_text{
        width: 100%;
        font-size: 18px;
        text-indent: 75px;
    }
}
#main_about_other{
    width:100%;
}
#article_title{
    text-align: left;
    font-size: 35px;
    font-weight: bold;
}
#article_about{
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
}
.article_about_section{
    overflow-x: auto;
    margin: 5px;
}
.article_wrapper{
    padding: 10px;
}
.article_text{
    width: 95%;
    text-align: justify;
    float: right;
    text-indent: 50px;
    line-height: 1.3;
    word-spacing: 2px;
    font-size: 17px;
}
.article_text_dialogue{
    width: 95%;
    text-align: justify;
    float: right;
    text-indent: 75px;
    line-height: 1.3;
    word-spacing: 2px;
    font-size: 17px;
}
.article_subtitle{
    width: 95%;
    padding: 5px;
    margin: 5px;
    text-align: left;
    float: left;
    font-size: 25px;
}
.article_image{
    width: 95%;
    margin: 1%;
    float: left;
}
.article_image_picture{
    width: 80%;
    max-height: 500px;
}
.article_image_description{
    width: 85%;
    margin: 0 auto;
    margin-bottom: 5px ;
    font-size: 15px;
    text-align: center;
}
.article_link{
    text-decoration:underline; 
    display:inline; 
    font-size:17px;
}
@media (max-width: 768px) {
    .article_text{
        line-height: 1.5;
        text-indent: 50px;
    }
    .article_text_dialogue{
        line-height: 1.5;
        text-indent: 65px;
    }
    .article_image_picture{
        width: 100%;
        height: 250px;
    }
}
.article_downloads{
    border: 1px solid silver;
    border-radius: 5px;
    box-shadow: 0px 0px 18px -7px rgba(66, 68, 90, 1);
    width: 45%;
    float: left;
    margin: 10px;
}
@media (max-width: 768px) {
    .article_downloads{
        width: 60%;
    }
}
.article_downloads_option{
    margin: 10px;
    display: flex;
    flex-flow: row nowrap;
}
.article_downloads_option_object{
    width: 50%;
}
#article_add_info{
    width: 95%;
    float: left;
}
#piece_wraper{
    width: 100%;
    display: flex;
    flex-flow: column;
}
#piece_title{
    width: 95%;
    text-align: left;
    font-size: 35px;
    font-weight: bold;
}
#piece_date{
    width: 75%;
    margin: 5px;
    margin-bottom:10px ;
    text-align: left;
}
.piece_text_wrapper{
    padding: 10px;
}
.piece_text{
    width: 90%;
    margin: 0 auto;
    text-align: justify;
    text-indent: 50px;
    line-height: 1.3;
    word-spacing: 2px;
    font-size: 17px;
}
.piece_subtitle{
    width: 95%;
    padding: 5px;
    margin: 5px;
    text-align: center;
    float: left;
    font-size: 25px;
}
.piece_photo{
    width: 85%;
    margin: 1% auto;
}
.piece_photo_pic{
    width: 75%;
    max-height: 500px;
}
.piece_photo_description{
    width: 85%;
    margin: 0 auto;
    margin-bottom: 5px ;
    font-size: 15px;
    text-align: center;
}
.piece_link{
    text-decoration:underline; 
    display:inline; 
    font-size:17px;
}
.piece_iframe{
    width: 75%;
    max-height: 400px;
    margin: 10px auto;
}
#piece_downloads{
    border: 1px solid silver;
    border-radius: 5px;
    box-shadow: 0px 0px 18px -7px rgba(66, 68, 90, 1);
    width: 45%;
    margin: 10px;
    float: left;
}
@media (max-width: 768px) {
    #piece_downloads{
        width: 60%;
    }
    .piece_photo_pic{
        width: 100%;
        height: 250px;
    }
    .piece_iframe{
        width: 100%;
        height: 300px;
    }
}
.piece_downloads_option{
    margin: 10px;
    display: flex;
    flex-flow: row nowrap;
}
.piece_downloads_object{
    width: 50%;
}
#piece_gallery_title{
    width: 50%;
    margin: 0 auto;
    padding: 10px;
    font-size: 20px;
    font-weight: bold;
}
#piece_gallery{
    margin: 0 auto;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}
.piece_gallery_object{
    width: 25vw;
    margin: 5px;
}
.piece_gallery_photo{
    width: 100%;
    align-self: flex-start;
}
@media (max-width: 768px) {
    .piece_gallery_object{
        width: 40vw;
    }
}
#list_filters{
    width: 80%;
    margin: 0 auto 20px auto;
    padding: 10px;
    border: 1px solid silver;
    border-radius: 5px;
    box-shadow: 0px 0px 18px -7px rgba(66, 68, 90, 1);
    overflow: auto;
    display: flex;
    flex-flow: row wrap;
    align-self: center;
    justify-content: space-evenly;
}
#list_filters_name{
    text-align: justify;
    font-size: 20px;
    width: 80%;
    padding: 10px;
}
.list_filters_object{
    padding: 10px;
    width: 25%;
}
@media (max-width: 768px) {
    .list_filters_object{
        padding: 10px;
        margin: 5px;
        width: 35%;
    }
}
#list_section{
    display: flex;
    flex-flow: column wrap;
}
.list_selection_article{
    width: 90%;
    margin: 0 auto;
    align-self: center;
}
.list_selection_portfolio{
    width: 90%;
    padding: 10px;
    align-self: center;
}
.list_selection_category_section{
    width: 100%;
    font-size: 25px;
}
.list_option{
    overflow: auto;
    padding: 10px;
    /*border: 2px solid silver;*/
    border-radius: 5px;
    /*box-shadow: 0px 0px 18px -7px rgba(66, 68, 90, 1);*/
}
.list_option_thumbnail{
    width: 25%;
    float: left;
}
.list_option_thumbnail_pic{
    width: 75%;
    height: 125px;
    margin: 0 auto;
}
.list_option_linker{
    width: 75%;
    float: right;
    text-align: left;
}
.list_option_category{
    padding: 5px;
    color: darkgray;
}
.list_option_title{
    margin-top: 1%;
    font-size: 20px;
}
.list_option_description{
    margin: 1% 0;
    text-align: justify;
}
.list_option_go_to{
    width: 100%;
    float: right;
}
.list_option_button{
    width: 25%;
    float: right;
}