html::-webkit-scrollbar {
    display: none;
}
html {
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* scroll-behavior: smooth; */
}
img{
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
body{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    padding: 0;
    margin: 0;
    z-index: 0;
}
#post-preloader{
    height: 100vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#post-preloader #line{
    height: 2px;
    -webkit-animation: post-preloader-line 1.5s linear forwards /*, post-preloader-loadToHome 2s linear 2.5s forwards*/;
    animation: post-preloader-line 1.5s linear forwards /*, post-preloader-loadToHome 2s linear 2.5s forwards*/;
    margin-top: 1vh;
}
#post-preloader #title{
    font-size: 5vw;
    -webkit-animation: post-preloader-titleShrink 1s linear 4s forwards;
    animation: post-preloader-titleShrink 1s linear 4s forwards;
}
#post-preloader #subtitle{
    margin-bottom: 15vh;
    font-size: 3vw;
    -webkit-animation: post-preloader-subtitle 1.6s infinite linear;
    animation: post-preloader-subtitle 1.6s infinite linear;
    letter-spacing: 1px;
}
#content{
    display: none;
    transition: margin-right .5s;
    position: relative;
    z-index: 1;
}
navbar{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1vh 1vw;
    -webkit-animation: navbar 1s linear forwards;
    animation: navbar 1s linear forwards;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    z-index: 1;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
navbar #navbar-name{
    flex-basis: 30%;
    font-size: 2em;
    cursor: pointer;
    transition: 1s;
    letter-spacing: 1.5px;
}
navbar #navbar-links-container{
    flex-basis: 70%;
    display: flex;
    align-items: center;
    justify-content: space-around;
}
navbar .navbar-link{
    padding: 1vh 1vw;
    transition: 0.5s;
    cursor: pointer;
    font-variant: small-caps;
    text-decoration: none;
    color: inherit;
}
navbar .navbar-link:hover{
    text-decoration: underline;
    transform: scale(1.1);
    transition: 0.5s;
}
i{
    font-size: 30px;
}
#side-navbar{
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    right: 0;
    overflow-x: hidden;
    padding-top: 20px;
    transition: 0.5s;
    writing-mode: vertical-rl;
    text-orientation: sideways-right;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
#side-navbar a {
    padding: 8px 8px 8px 32px;
    text-decoration: none;
    font-size: 25px;
    display: block;
    transition: 0.3s;
    color: inherit;
    font-weight: 100;
    font-size: medium;
}
#side-navbar i{
    margin-top: -4vh;
    margin-right: 2vw;
}
.half-half{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    max-width: 100vw;
}
.half-half .about{
    flex-basis: 50%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 50px;
}
.half-half .about #greetings{
    font-size: 3vw;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.half-half .about #my-description{
    letter-spacing: 0.8px;
    line-height: 25px;
    text-align: justify;
}
.half-half .picture{
    flex-basis: 50%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    max-height: 94vh;
    overflow-y: hidden;
}
.half-half .picture img{
    width: 100%;
    transition: 1s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.half-half .picture img:hover{
    transition: 1s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.button-holder{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.button-holder b{
    margin-right: 10px;
}
.rounded-button{
    display: block;
    padding: 7px 20px;
    margin: 3px;
    border-radius: 20px;
    font-size: large;
    background-color: transparent;
    transition: 0.5s;
    cursor: pointer;
}
.rounded-button:hover{
    transform: scale(1.04);
    transition: 0.5s;
}
#download-resume, #view-resume{
    text-decoration: none;
    color: inherit;
}
footer{
    display: none;
    height: 200px;
    left: 0;
    right: 0;
    bottom: 0;
    position: sticky;
    position: -webkit-sticky;
    z-index: -2;
}
footer #footer-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: white;
    text-align: center;
}
.floating-circle{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    background-color: inherit;
    z-index: -1;
    margin: -74px 30px 10px -30px;
    opacity: 30%;
}
#cursor-follower{
    position:absolute;
    transform:translate(-50%,-50%);
    height:50px;
    width:50px;
    border-radius:50%;
    opacity: 40%;
}
.section{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3vh 3vw;
}
.section .title{
    font-size: 300%;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.experiences-holder{
    display: flex;
    flex-direction: column;
    align-items: space-around;
    justify-content: flex-start;
    max-width: 100%;
    padding: 0 4vw;
}
.experience{
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 100vw;
    margin-top: 5vh;
}
.experience-description-container{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: column;
    flex-basis: 60%;
}
.experience-post{
    font-size: 170%;
    font-variant-caps: small-caps;
    padding: 1vh 0;
}
.experience-duration{
    opacity: 60%;
    font-size: 120%;
    font-weight: lighter;
}
.experience-description{
    letter-spacing: 1px;
    font-weight: 300;
}
.experience-description-list{
    list-style-type: circle;
}
.experience-more-link{
    padding: 1vh 0;
    font-size: large;
    cursor: pointer;
    transition: 0.5s;
    display: none;
}
.experience-more-link:hover{
    text-decoration: underline;
    transform: scale(1.02);
    transition: 0.5s;
}
.experience-more-link i{
    font-size: smaller;
}
.experience-logo-and-links{
    display: flex;
    flex-basis: 30%;
    align-items: flex-end;
    justify-content: center;
    flex-direction: column;
}
.experience-logo-and-links img{
    width: 400px;
    border-radius: 20px;
    transition: 1s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.experience-logo-and-links img:hover{
    transition: 1s;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
}
.experience-company{
    padding: 1vh 0;
    font-size: larger;
}
.experience-socials i{
    margin-right: 10px;
    color: darkcyan;
    cursor: pointer;
    transition: 0.5s;
}
.experience-socials i:hover{
    opacity: 60%;
    transition: 0.5s;
}
.projects-holder{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 100%;
    padding: 0 4vw;
}
.project{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    margin: 2vh 0vw;
    border: 0.2px solid dimgray;
    padding: 2vh 1vw;
    flex-basis: 30%;
}
.project-image img{
    width: 350px;
    transition: 1s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.project-image img:hover{
    transition: 1s;
    opacity: 90%;
    transform: scale(1.03);
}
.project-title{
    font-size: 170%;
    font-variant-caps: small-caps;
    padding: 1.5vh 0;
    text-align: center;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.project-technologies{
    font-weight: lighter;
    letter-spacing: 1px;
    text-align: center;
    padding-bottom: 2vh;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.project-description{
    font-weight: 300;
    text-align: center;
    letter-spacing: 1px;
}
.project-links{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    padding: 1vh 0;
    margin-top: 2vh;
}
.project-links a{
    width: auto;
    color: inherit;
    text-decoration: none;
}
.divider-line{
    height: 0.5px;
    width: 100%;
    background-color: dimgray;
    margin: 8px 0;
}
.project-git, .project-demo{
    border: 0.1px solid dimgray;
    width: 100%;
    transition: 0.5s;
    flex-basis: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 0;
    cursor: pointer;
}
.project-git:hover, .project-demo:hover{
    transition: 0.5s;
    opacity: 80%;
}
.skills-holder{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    flex-wrap: wrap;
    padding: 0vh 4vw;
    max-width: 100%;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.skills-holder img{
    width: 4.2em;
    padding:4vh 3vw;
    transition: 0.3s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.skills-holder img:hover{
    transform: scale(1.1);
    transition: 0.3s;
    background-color: inherit;
}
.next-section-divider{
    width: 93%;
    display: none;
}
.contact-holder{
    max-width: 100%;
    width: 97%;
    min-height: 70vh;
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: flex-start;
    margin: 5vh 3vw;
    padding: 1vh 2vw;
    background-image: url("../pictures/contact-bg.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-clip: border-box;
    background-size: cover;
}
.contact-form{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    overflow: auto;
    color: black;
}
.contact-form input{
    width: 300px;
    background: none;
    border: none;
    outline: none;
    border-bottom: 2px solid dimgray;
    padding: 2vh 1vw;
    padding-bottom: 4px;
    font-size: 110%;
    font-family: monospace;
    margin-top: 3vh;
    border-radius: 0;
}
.contact-form textarea{
    width: 300px;
    height: 90px;
    resize: none;
    background: none;
    border: none;
    outline: none;
    border: 2px solid dimgray;
    padding: 2vh 1vw;
    padding-bottom: 4px;
    font-size: 110%;
    font-family: monospace;
    margin-top: 3vh;
    border-radius: 0;
}
::placeholder {
  color: dimgray;
  opacity: 1;
}
:-ms-input-placeholder {
 color: dimgray;
}
::-ms-input-placeholder {
 color: dimgray;
}
.contact-form button{
    margin: 2vh 0vw;
    padding: 5px;
    font-size: 80%;
    border-radius: 10px;
    border: 2px solid dimgray;
    background: none;
    cursor: pointer;
    transition: 0.3s;
    color: inherit;
    font-weight: lighter;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.contact-form button:hover{
    transition: 0.3s;
    background-color: rgba(0,0,0,0.4);
    color: rgba(255,255,255,0.7);
}
.form-border{
    border: 0.1px solid dimgray;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 20px;
}
.form-border hr{
    width: 98%;
    background-color: dimgray;
}
.form-title{
    letter-spacing: 1px;
    font-variant: small-caps;
}
#message_sent{
    font-size: small;
}
.socials-holder{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    width: 100%;
    margin: 4vh 0;
}
.socials-holder i{
    text-decoration: none;
    color: rgba(0, 0, 0, 0.8);
    transition: 0.3s;
    cursor: pointer;
}
.socials-holder i:hover{
    transition: 0.3s;
    transform: scale(1.1);
    color: rgba(0, 0, 0, 0.6);
}
#my-thoughts{
    font-size: 200%;
    width: 40%;
    text-align: right;
    font-weight: lighter;
    letter-spacing: 2px;
    font-style: oblique;
    text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
    color: white;
}
/*VEL CALC STYLESHEET STARTS*/
.vc-introduction-container{
    max-width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    padding: 5vh 5vw;
    flex-wrap: wrap;
}
.vc-introduction{
    text-align: center;
    border: 0.1px solid dimgray;
    padding: 10px;
    flex-basis: 50%;
}
.vc-introduction-container img{
    flex-basis: 40%;
    width: 300px;
}
.vc-introduction-container .vel-calc-slideshow{
    flex-basis: 40%;
    width: 300px;
}
.vc-introduction-container .vel-calc-slideshow img{
    width: 100%;
}
.vc-introduction-container .code-snippet{
    flex-basis: 40%;
    width: 300px;
    max-height: 60vh;
    overflow-y: auto;
    overflow-x: hidden;
    border: 0.1px solid dimgray;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    font-family: monospace;
    font-weight: lighter;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.vc-introduction-container .code-snippet::-webkit-scrollbar {
    display: none;
}
.code-snippet .code-block{
    background-color: black !important;
    color: white;
    text-align: left;
    width: 95%;
    padding: 10px;
}
.code-snippet .code-block .color_1{
    color:pink;
}
.code-snippet .code-block .color_2{
    color:#87cefa;
}
.code-snippet .code-block .color_3{
    color:#90ee90;
}
.code-snippet .code-block .color_4{
    color:orange;
}
.code-snippet .code-block .color_5{
    color:#ff4500;
}
.code-snippet .code-explanation{
    text-align: center;
    font-size: 100%;
    width: 80%;
    font-weight: lighter;
}
.vc-introduction h1{
    font-weight: lighter;
    font-size: 300%;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.vc-introduction h3{
    font-weight: lighter;
    font-size: 300%;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.vc-introduction p{
    letter-spacing: 1px;
    line-height: 20px;
    font-weight: lighter;
    padding: 15px;
}
.back-to-portfolio{
    position:fixed;
	width:60px;
	height:60px;
	top:10px;
	left:10px;
	border-radius:50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 1px 1px 3px black;
    color: white;
    transition: 0.5s;
    opacity: 80%;
}
.back-to-portfolio:hover{
    opacity: 100%;
    transform: scale(1.05);
    transition: 0.5s;
}
.vel-calc-slideshow .vel-calc-slideshow-image{
    display: none;
}
/*RANDOM ART GENERATOR STYLESHEET STARTS*/
.rag-main-container{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
    max-width: 100%;
    padding: 5vh 5vw;
    flex-wrap: wrap;
}
.rag-generator-holder{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: column;
    flex-basis: 45%;
    border: 0.1px solid dimgray;
}
.rag-generator-holder .rag-generator-buttons{
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-direction: row;
}
.rag-introduction-container{
    text-align: center;
    border: 0.1px solid dimgray;
    padding: 10px;
    flex-basis: 50%;
}
.rag-main-container h1{
    font-weight: lighter;
    font-size: 300%;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.rag-main-container h3{
    font-weight: lighter;
    font-size: 300%;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.rag-main-container p{
    letter-spacing: 1px;
    line-height: 20px;
    font-weight: lighter;
    padding: 15px;
}
.rag-generator-holder #rag-username{
    width: 50%;
    background: none;
    border: none;
    outline: none;
    border-bottom: 0.1px solid dimgray;
    padding: 2vh 1vw;
    padding-bottom: 4px;
    font-size: 110%;
    border-radius: 0;
}
#contrast-slider{
    width: 35%;
    height: 7px;
    margin: 2% 0;
    cursor: pointer;
    transition: .5s;
    box-shadow: none;
}
#contrast-slider:hover{
    transform:scale(1.05);
    transition:.5s
}
.rag-generator-holder #art-canvas{
    border: 0.1px solid dimgray;
}
.rag-main-container .rag-other-applications{
    text-align: center;
    border: 0.1px solid dimgray;
    padding: 10px;
    max-width: 97%;
}