@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@keyframes fade-in {
    0% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fade-in-bottom {
    0% {
        opacity: 0;
        transform: translateY(200%);
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fade-in-right {
    0% {
        opacity: 0;
        transform: translateX(75%);
    }
    50% {
        opacity: 0.4;
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.accordion-content {
    display: none;
}
.darkmode {
    font-family: Poppins;
    color: rgba(220, 220, 220, 0.9);
    text-align: center;
}
.lightmode {
    font-family: Poppins;
    color: rgba(10, 10, 10, 1);
    text-align: center;
}
.active {
    display:block;
}
body {
    padding: 0.5%;
    z-index: auto;
    background-image: url("../Images/CodeBG.png");
    background-repeat: repeat-y;
    height: auto;
}
.darkmode[class*="top-bar"] {
    z-index: 10;
    background: rgba(80, 80, 80, 1);
    padding: 0.5rem;
    border-radius: 10px;
    transition: all .5s;
    position: sticky;
    top: 1%;
    display: flex;
    justify-content: space-evenly;
    filter: drop-shadow(0 0 0.7rem rgba(40, 40, 40, 0.6));
}
.darkmode[class*="media-button"] {
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 100px;
    height: 2.5rem;
    margin: 0.25rem;
}
.darkmode[class*="media-button"]:hover {
    background: rgba(111, 111, 111, 1);
    transform: scale(1.1) rotate(-10deg);
}
.lightmode[class*="top-bar"] {
    z-index: 10;
    background: rgba(220, 220, 220, 1);
    padding: 0.5rem;
    border-radius: 10px;
    position: sticky;
    top: 1%;
    transition: all .5s;
    display: flex;
    justify-content: space-evenly;
    filter: drop-shadow(0 0 0.7rem rgba(180, 180, 180, 0.6));
}
.lightmode[class*="media-button"] {
    transition: all 0.3s;
    cursor: pointer;
    border-radius: 100px;
    height: 2.5rem;
    margin: 0.25rem;
}
.lightmode[class*="media-button"]:hover {
    background: rgba(250, 250, 250, 1);
    transform: scale(1.1) rotate(10deg);
}
.contentListItem {
    text-align: center;
    display: block;
}
.bigItem {
    font-size: 130%;
    color:deepskyblue;
}
.content-bullet {
    padding: 0;
}
.media-button:active {
    transform: scale(0.9);
}
.content-outlined-container {
    border: 2px solid;
    padding-left: 1%;
    padding-right: 1%;
    border-radius: 15px;
}
.content-subheader {
    font-weight: bold;
    font-size: 125%;
}
.content-header {
    font-size: 200%;
    position: relative;
    z-index: 1;
}
.content-paragraph {
    font-size: 110%;
    position: relative;
    z-index: 1;
    top: -2vh;
}
.darkmode[class*="aboutMeScrollButton"] {
    border: 3px solid;
    font-size: 110%;
    font-weight: bold;
    border-radius: 5px;
    padding: 2% 3%;
    color: rgba(180, 255, 180, 0.8);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    top: 5vh;
}
.darkmode[class*="aboutMeScrollButton"]:hover {
    color: rgba(100, 255, 100, 1);
    transform: scale(1.05);
}
.lightmode[class*="aboutMeScrollButton"] {
    border: 3px solid;
    font-size: 110%;
    font-weight: bold;
    border-radius: 5px;
    padding: 2% 3%;
    color: rgba(140, 90, 90, 0.8);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    top: 5vh;
}
.darkmode[class*="pricingScrollButton"] {
    border: 3px solid;
    font-size: 110%;
    font-weight: bold;
    border-radius: 5px;
    padding: 2% 3%;
    color: rgba(255, 180, 180, 0.8);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    top: 5vh;
}
.lightmode[class*="pricingScrollButton"] {
    border: 3px solid;
    font-size: 110%;
    font-weight: bold;
    border-radius: 5px;
    padding: 2% 3%;
    color: rgba(140, 15, 140, 0.8);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    top: 5vh;
}
.darkmode[class*="pricingScrollButton"]:hover {
    color: rgba(255, 100, 100, 1);
    transform: scale(1.05);
}
.lightmode[class*="aboutMeScrollButton"]:hover {
    color: rgba(120, 70, 70, 1);
    transform: scale(1.05);
}
.lightmode[class*="pricingScrollButton"]:hover {
    color: rgba(200, 10, 200, 1);
    transform: scale(1.05);
}
.darkmode[class*="workScrollButton"] {
    border: 3px solid;
    font-size: 110%;
    font-weight: bold;
    border-radius: 5px;
    padding: 2% 3%;
    color: rgba(100, 100, 200, 0.8);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    top: 5vh;
}
.darkmode[class*="workScrollButton"]:hover {
    color: rgba(50, 50, 255, 1);
    transform: scale(1.05);
}
.lightmode[class*="workScrollButton"] {
    border: 3px solid;
    font-size: 110%;
    font-weight: bold;
    border-radius: 5px;
    padding: 2% 3%;
    color: rgba(30, 150, 200, 0.8);
    cursor: pointer;
    background: transparent;
    transition: all 0.3s;
    text-align: center;
    position: relative;
    top: 5vh;
}
.lightmode[class*="workScrollButton"]:hover {
    color: rgba(20, 200, 255, 1);
    transform: scale(1.05);
}
.button-container {
    display: flex;
    justify-content: center;
    margin-top: 10vh;
}
.button-container2 {
    display: flex;
    justify-content: center;
    margin-top: 2vh;
}
#particles {
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    position: absolute;
    z-index: -99999;
    height: 500vh;   
}
.tech-stack {
    display: flex;
    justify-content: center;
}
.tech-stack-language-icon {
    height: 10vh;
    padding-left: 3%;
    padding-right: 3%;
    transition: all 0.2s;
    cursor: pointer;
}
.tech-stack-language-icon:hover {
    transform: scale(1.15);
}

.accordion-container {
    border-radius: 15px;
    border: none;
    width: 65vw;
    position: relative;
    left: 14vw;
}
.darkmode[class*="accordion-button"] {
    width: 100%;
    background: linear-gradient(50deg, rgba(80, 80, 80, 1), rgba(90, 90, 90, 1));
    background-size: 150% 150%;
    border: 3px solid transparent;
    border-radius: 5px;
    height: 7vh;
    transition: all .2s;
    cursor: pointer;
}
.lightmode[class*="accordion-button"] {
    width: 100%;
    background: linear-gradient(50deg, rgba(160, 160, 160, 1), rgba(170, 170, 170, 1));
    border: 3px solid transparent;
    border-radius: 5px;
    height: 7vh;
    transition: all .2s;
    cursor: pointer;
}
.project-video-example {
    border: none;
    width: 70vw;
    height: 85vh;
    padding-bottom: 4%;
}
.darkmode[class*="project-div"] {
    border-top: 1px solid white;
    width: 90%;
    position: relative;
    left: 5%;
}
.lightmode[class*="project-div"] {
    border-top: 1px solid black;
    width: 90%;
    position: relative;
    left: 5%;
}