/* Safari/Chrome */
/* scrollbar styling https://www.youtube.com/watch?v=lvKK2fs6h4I */
::-webkit-scrollbar {
    width: 2rem;
    height: 15px;
}
::-webkit-scrollbar-track {
    background: hsl(0, 0%, 21%);
    border-radius: 100vw;
}
::-webkit-scrollbar-thumb {
    background: hsl(63, 16%, 28%);
    border-radius: 100vw;
}
::-webkit-scrollbar-thumb:hover {
    background: hsl(62, 16%, 37%);
}
/* firefox madness */
@supports (scrollbar-color: rgb(116, 113, 73) rgb(34, 42, 69)) {
    * {
        scrollbar-color: hsl(63, 16%, 28%) hsl(0, 0%, 21%);
        scrollbar-width: auto;
    }
}

body, html {
    margin: 0;
    padding: 0;
    height: 100%;
}

body {
    background: rgb(82, 78, 62);
    background: linear-gradient(0deg, rgba(82, 78, 62, 1) 0%, rgba(103, 101, 82, 1) 34%, rgba(42, 41, 34, 1) 100%);
    background-attachment: fixed;
    background-image: url(../images/1080p_bg.jpg);
    background-size: cover;
    background-position: center;
}
a {margin: 0; padding: 0;}
#deezbg {
    position: relative;
    margin: 0 auto;
    width: 100%;
    /* height: 1050px; */
    box-shadow: 0px 0px 50px rgba(0, 0, 0, .9);
}

#header {
    position: relative;
    background-image: url(../images/header_669x193_tab.png);
    background-position: 0px 0px;
    background-size: contain;
    background-repeat: no-repeat;
    /* background-color: rgba(0,0,0,.5); */
    width: 52%;
    aspect-ratio: 669 / 193;
    /* height: 200px; */
    /* clip-path: polygon(0% 0%, 100% 0%, 100% 5%, 93% 35%, 82% 75%, 75% 80%, 30% 60%, 8% 72%, 0% 100%);  */
}
#port-job {
    position: absolute;
    font-family: 'Cormorant Garamond', serif;
    font-size: 4vw;
    text-align: center;
    color: #DDD78C;
    width: 45%;
    /* height: 80px; */
    top: 0px;
    right: 2.5%;
    background-color: rgba(0, 0, 0, .5);
    border-radius: 0px 0px 30px 30px;
    padding: 5px 10px;
}

#port-title {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.6vw;
    text-align: center;
    color: white;
    width: 45%;
    /* height: 32px; */
    top: 8vw;
    right: 3%;
}

#portfolio {
    position: relative;
    background-color: rgba(0, 0, 0, .75);
    width: calc(100% - 44px);
    /* height: 85vw; */
    top: 0px;
    left: 0px;
    border: 2px solid rgba(181, 169, 123, .5);
    padding: 20px;
    /* border-radius: 0px 0px 10px 10px; */
    overflow: hidden;

}

#port-icons {
    position: relative;
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    width: 100%;
    /* background-color: purple; */
    margin: 0px;
    height: 110px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    overflow-y: hidden;
    margin-bottom: 20px;
}
.thumb img {
    width: 50px;
    height: 70px;
    /* float: right; */
    margin: 0px 20px 20px 0px;
}
/* ----------------- contains the main full size art graphic ---------------- */
#port-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
    /* height: 800px; */
    /*padding: 30px;*/ /* --- allows the glow to be viewed inside the "art" class --- */
    /* background: #3eb80e; */
    /* max-height: 800px; */
}



.thumb {
    display: block;
    /* width: 50px;
    height: 70px; */
}

.thumb>img {
    box-shadow: 0px 0px 10px black;
    border: 2px solid black;
}

.thumb>img:hover {
    box-shadow: 0px 0px 15px rgba(172, 164, 136, 1);
    border: 2px solid black;
}

.art {
    border: 2px black solid;
    border-radius: 1.5%;
    /* box-shadow: 0px 0px 20px rgba(172, 164, 136, .75); */
    /* box-shadow: 0px 0px 30px rgba(0, 0, 0, 1); */
    width: 100%;
    /* max-height: 800px; */
}

#footy {
    display: flex;
    justify-content: space-evenly;
    width: 100%;
    height: 34px;
    position: fixed;
    bottom: -2px;
    left: 0px;
    /* background-color: #6699CC; */
}
.foot {
    height: 20px;
    padding: 5px 10px;
    border-radius: 8px 8px 0px 0px;
    background-color: black;
    /* color: rgb(128, 123, 94); */
    color: rgb(145, 145, 145);

    font-size: 20px;
    /* box-shadow: 0px 0px 30px rgba(172, 164, 136, .75); */
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 1);
    font-family: sans-serif;
    font-style: italic;
    border: 2px solid rgba(181, 169, 123, .5);
}
