  /*date of creation: 24th of August, 2022
            created by: Cabbage Sorter*/

body{
    background-color: black;
    background-image: url(../images/layout-3/art1bg.png);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: bottom left ;
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    color: white;
    overflow-y: hidden;
    background-attachment: fixed;
}

.container{
    width: 750px;
    margin: 0 auto;
    background-color: rgb(0, 0, 0, 0.7);
    padding: 10px;
    height: 90%;
    font-size: 16px;
    color: white;
    border-style: solid;
    border-width: 0px 31px 0px 31px;
    -moz-border-image: url(../images/layout-3/bg18.gif) 0 30 0 30 repeat repeat;
    -webkit-border-image: url(../images/layout-3/bg18.gif) 0 30 0 30 repeat repeat;
    -o-border-image: url(../images/layout-3/bg18.gif) 0 30 0 30 repeat repeat;
    border-image: url(../images/layout-3/bg18.gif) 0 30 0 30 repeat repeat;
    
}

.article{
    overflow-y: scroll;
    height: 85%;
}

.back-button{
    position: relative;
    margin: 0 auto;
    float: right;
    right: 10%;
}

.back-button a{
    text-decoration: none;
    color: inherit;
}

.back-button a:hover{
    background-color:#fefffe;
    color: black;
    transition: ease-in 0.2s;
}

/* S C R O L L B A R*/

::-webkit-scrollbar {
    width: 7px;
    height: 7px;
    }
    ::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
    }
    ::-webkit-scrollbar-thumb {
    background: white;
    border: 0px none #ffffff;
    }
    ::-webkit-scrollbar-thumb:hover {
    background: grey;
    }
    ::-webkit-scrollbar-thumb:active {
    background: grey;
    }
    ::-webkit-scrollbar-track {
    background: darkgray;
    border: 0px none #ffffff;
    }
    ::-webkit-scrollbar-track:hover {
    background: lightgray;
    }
    ::-webkit-scrollbar-track:active {
    background: lightgray;
    }
    ::-webkit-scrollbar-corner {
    background: transparent;
    }
    
    ::selection {
    color: white;
    background-color: grey;
    }