/*fonts*/
@font-face {
    font-family: Opirus;
    src: url(../fonts/Pixeled.ttf);
}

* {
    box-sizing: border-box;
}

body {
    font-family: ms pgothic, 'Courier New', Courier, monospace;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    background-color: white;
    color: black;
    background-image: url("../images/art-part/background-div.png");
    image-rendering: optimizeSpeed;
}

footer {
    background-color: white;
    color: black;
    display: flex;
    align-items: center;
    font-size: 16px;
    padding: 5px;
}

.sidebar {
    background-color: white;
    min-width: 100vh;
    height: 100px;
    background-image: url("../images/art-part/background.png");
    background-size: 80px;
    border-bottom: 5px solid black;
    position: sticky;
    padding: 5px;

    display: flex;
    flex-direction: row;
    justify-content: left;
    align-items: center;
}

.sidebar a {
    background-color: black;
    color: white;
    border: 2px solid white;
    margin: 5px;
    font-family: ms pgothic, 'Courier New', Courier, monospace;
    font-weight: bold;
    font-size: 17px;
    text-align: left;
    padding: 15px;
    text-decoration: none;

    transition: all 0.2s ease-out;
}

.sidebar a:hover {
    text-decoration: underline;
}

.sidebar a:active {
    color: gray;
    border-color: gray;
}

#signature {
    margin: 0;
    color: white;
    font-family: Opirus;
    font-weight: normal;
    font-size: 25px;
    background-color: black;
    background-clip: text;
    -webkit-text-stroke: 10px transparent;
    padding: 5px;
    text-decoration: none !important;
    margin-left: 10px;

    transition: letter-spacing 1s;

    border: none;
    width: auto;
    height: auto;
}

#signature:hover {
    letter-spacing: 5px;
}

.vl {
    border-left: 5px solid black;
    height: 80px;
    margin-left: 10px;
    margin-right: 10px;
}

div.content {
    width: 100%;
    height: 100%;
}

.content img {
    margin: 5px;
    border: white solid 1px;
}

.gallery {
    position: relative;
    height: 100%;
}



/*modal stuff*/
/* not the actual modal here, just the darkening effect itself */
.modal {
    display: none;
    position: fixed;
    /* to stay on top */
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    /*the darkening effect + fall back colour just in case*/
    background-color: rgb(0, 0, 0);
    background-color: rgba(3, 3, 12, 0.4);
}

/* and here is the content of the page! */
.modal-content {
    background-color: white;
    margin: auto;
    width: 50%;
    border: 2px solid black;
}

h2 {
    padding: 15px;
    margin: 0px;
    color: white;
    background-color: black;
    text-decoration: underline dotted;
}

h3 {
    color: white;
    font-size: 22px;
    margin: 0px;
}

h4 {
    color: white;
    text-decoration: none;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* close button */
.close_multi {
    margin: 10px;
    color: blue;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

.close_multi:hover {
    color: purple;
}

.modal-content img {
    width: 100%;
    margin: 0px;
    display: block;
    border: none;
    border-top: black solid 2px;
    border-bottom: black solid 2px;
}

.modal-content p {
    margin: 15px;
    font-size: 16px;
}

.modal-content a,
footer a {
    color: blue;
    text-decoration: underline;
}

.modal-content a:hover,
footer a:hover {
    color: purple;
}

.comment {
    color: gray;
    font-weight: bold;
}

.song {
    border-top: 2px solid black;
    border-bottom: 2px solid black;
    display: flex;
    align-items: center;
}

.song img {
    margin: 15px;
    border: 3px dashed;
    width: 150px !important;
    border: black 1px solid;
}

.song div {
    width: 100%;
    margin: 15px;
}

.song p {
    color: white;
    font-size: 25px;
    margin: 15px;
    margin-left: 0;
}

.song a {
    text-decoration: none;
}

.song a:hover {
    text-decoration: underline;
    color: white;
}

/*drawings previews*/
.myBtn_multi {
    padding: 0px;
    margin: 0px;
    background-color: transparent;
    border: none;
}

/*show more elements*/

.text-hidden {
    max-height: 0px;
    overflow: hidden;

    transition: all 0.5s ease-in-out;
}

.show-more {
    cursor: pointer;
    color: blue;
    text-decoration: underline;
    margin: 15px;
    font-size: 16px;
}

.show-more:hover {
    color: purple;
}

.ua-text, .ua-text a {
    font-family: Tahoma, 'Courier New', Courier, monospace;
}