:root {
    --orangeAccent: rgb(255, 187, 79);
    --sidebarColor: rgb(12, 12, 12);
    --bodyColor: rgb(32, 32, 32);
    /* --orangeAccent: rgb(209, 168, 101); */
  }

body{
    display:flex;
    font-family: 'Catamaran', sans-serif;
    background-color: var(--bodyColor);
}
h1{
    font-weight: 800;
    letter-spacing: 0.085rem;
    line-height: 4vw;
    color: rgb(255, 255, 255, 0.9);
    padding-left: 10%;
    font-size:3.5vw;
    margin-bottom: 2.5vw;
    margin-top: 2.5vw;
}
h2{
    font-weight: 600;
    color: rgb(255, 255, 255, 0.8);
    letter-spacing: 0.075rem;
}
h3{
    font-weight: 400;
    color: rgb(255, 255, 255, 0.8);
    letter-spacing: 0.075rem;
}
p{
    font-weight: 100;
    text-align: justify;
    color: rgb(255, 255, 255, 0.5);
}
hr{
    height: 0.1em;
    border-width: 0px;
    background-color: var(--orangeAccent);
}

.os_link{
    color: rgb(255, 255, 255, 0.8);
}

.sidebar{
    background-color: var(--sidebarColor);
    width: 22.5%;
    height: 100%;
    z-index: 1;
    position: fixed;
    left: 0em;
    top:0em;
    border-right: 0.1vw solid var(--orangeAccent);
    /* box-shadow: 0.5vw 0vw 0.75vw 0.5vw rgb(0, 0, 0, 0.8); */
}

.tabs{
    left:22.5%;
    position: fixed;
    width:1.75rem;
    height: 100%;
    top:0%;
    color: var(--orangeAccent);
}

.tab{
    text-align:center;
    cursor: pointer;
    border-right: 0.1vw solid var(--orangeAccent);
    position: absolute;
    width: 100%;
    height: 50%;
    font-weight: 200;
    letter-spacing: 0.085rem;
    writing-mode:vertical-rl;
    transition: background-color 0.6s ease;
}

#t2{
    position: absolute;
    top: 50%;
}

.tab_content{
    background-color: rgb(15,15,15,0);
    width: 74.5%;
    height: 100%;
    z-index: 0;
    position: fixed;
    left:25.5%;
    top:50%;
    transform: translate(0%, -50%);
}

#projects_tab .slideshow{
    position:relative;
    width:95%;
    height:85%;
    overflow-y: scroll;
    margin-top:3.5vw;
    margin-left:auto;
    margin-right: auto;
}

#projects_tab img{
    display: block;
    width: 85%;
    height: auto;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0vw 0vw 2vw 2vw rgba(0, 0, 0, 0.1);
}

#about_tab div{
    position:relative;
    width:80%;
    margin-left:auto;
    margin-right: auto;
}
.about_txt{
    position: absolute;
    top:40%;
    transform: translate(0%, -40%);
}

.sidebar p{
    width: 75%;
    padding-left: 10%;
}

.emp_txt{
    font-weight: 600;
    color: rgb(255, 255, 255, 0.75);
}

#my_photo {
    display: block;
    margin-top: 5vw;
    margin-left: auto;
    margin-right: auto;
    width: 70%;
    /* border-radius: 0.5em; */
    /* filter: grayscale(100%); */
}

/* .slideshow img{
    transition: transform 0.15s linear;
}

.slideshow img:hover{
    transform: scale(1.01);
} */


.icons{
    position: absolute;
    bottom:0em;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-top: 1.5vw;
    padding-bottom: 2vw;
    text-align: center;
    background-color:  var(--sidebarColor);
}

.icons img{
    display: inline-block;
    margin-left: 4%;
    margin-right: 4%;
    width: 2rem;
    height: auto;
    border-radius: 50%;
    background-color: rgb(255, 255, 255); 
    border: 2px solid rgb(255, 255, 255);
    transition: transform 0.15s linear;
}

.icons #github_icon:hover{
    background-color: #d3b6ff;
    border: 2px solid #d3b6ff;
    transform: scale(1.15);
}

.icons #linkedin_icon:hover{
    background-color: #75cfff;
    border: 2px solid #75cfff;
    transform: scale(1.15);
}

.icons #email_icon:hover{
    background-color: #f59090;
    border: 2px solid #f59090;
    transform: scale(1.15);
}

.prevnext{
    position: absolute;
    width: 95%;
    top: 40%;
    left: 2.5%;
    display: flex;
    justify-content: space-between;
}
.prev, .next {
    display: inline-block;
    cursor: pointer;
    /* color: rgb(255,255,255,0.9); */
    color: var(--orangeAccent);
    padding-left: 1.5vw;
    padding-right: 1.5vw;
    font-weight: bold;
    font-size: 3.85rem;
    user-select: none;
}

.prev{
    transition: padding-left 0.15s linear;
}
.next {
    transition: padding-right 0.15s linear;
}

.prev:hover{
    padding-left: 0.75vw;
}
.next:hover{
    padding-right: 0.75vw;
}

.dots{
    position: absolute;
    width: 100%;
    bottom: 4%;
    display: flex;
    justify-content: center;
}

.dot {
    display: inline-block;
    cursor: pointer;
    height: 0.25rem;
    width: 12%;
    margin-top: 0.5rem;
    margin-right:0.15rem;
    margin-left:0.15rem;
    background-color: rgba(187, 187, 187, 0.528);
    transition: background-color 0.6s ease;
}
.active, .dot:hover , .tab:hover{
/* background-color: rgb(255,255,255,0.9); */
background-color: var(--orangeAccent);
color: #000000;
}

.img_txt{
    position: relative;
    top:100%;
    width:80%;
    margin-left: auto;
    margin-right: auto;
}
.img_txt h2{
    margin-top: 3vw;
}

#other_projects{
    margin-top: 5vw;
}

#b_img{
    width: 80%;
    margin-top: 1em;
}

.mobile_view{
    display: none;
    width:100%;
    height: 100%;
    background-color: var(--sidebarColor);
    margin-left: auto;
    margin-right: auto;
}
.mobile_view .icons{
    width: 100%;
    position: relative;
}
.mobile_projects{
    background-color: var(--sidebarColor);
}
.section_header{
    background-color: var(--bodyColor);
}


@media screen and (max-width:40em){
    .sidebar{
        display:none;
    }
    
    .desktop_view{
        display: none;
    }

    .mobile_view{
        display: block;
    }

    .icons{
        padding-top: 1em;
        padding-bottom: 1em;
    }
    body{
        background-color: var(--sidebarColor);
    }

    h1{
        font-size: 2em;
        margin-top: 1em;
        margin-bottom: 1em;
    }
    .tab{
        display:none;
    }
    .tab_content{
        width:100%;
        left:0%;
    }

    .dot{
        width: 20%;
    }
}
