* {
    box-sizing: border-box;
    transition: all ease-in-out 0.5s
}

html {
    width: 100vw;
    height: unset;
    overflow-x: hidden;
    font-size: 9px;
    scroll-behavior: smooth;
    /* Custom cubic-bezier easing */
    scroll-behavior: cubic-bezier(0.42, 0, 0.58, 1);
    scrollbar-color: red black;
    font-family: 'Tilt Neon', sans-serif;
}

body {
    overflow-x: hidden;
    height: 100%;
}
header {
    padding-top: 5px;
    color: aliceblue;
    height: fit-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    z-index: 2;
    position: fixed;
    width: 100%;
    justify-content: center;
    background-color: #000000e5;
    border-bottom: 1px solid red;
}

nav {
    font-size: 1.8rem;
    text-wrap: nowrap;
    margin-top: 13px;
    margin-left: 6%;
}

h1 {
    color: aliceblue;
    text-align: center;
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h7, #overview-list {
    font-family: 'Tilt Neon', sans-serif;
}

b {
    color: cornflowerblue;
    display: block;
    margin: 5px 0;
}

p, ul{
    background-color: rgba(0,0,0,0.8);
    font-size: 1.6rem;
    line-height: 19px;
    border-radius: 4px;
    font-family: 'Tilt Neon', sans-serif;
}

/* ---------------------------------      SIDEBAR  IMPORT     --------------------------------- */
#mobile-menu-header {
    color: bisque;
}

.sidebar-menu > ul {
    padding-left: 0;
}
.sidebar-menu > ul > li:hover  {
    font-weight: bold;
}    
.sidebar-menu > ul > li > a {
    text-decoration: underline;
    color: azure;

}

.smallMenu-list-item {
    list-style: none;
    padding: 5px 1px;
}

.smallMenu-list-item:hover {
    background-color: rgba(255, 0, 0, 0.115);
}

/* HAMBURGER ICON STYLING */
#hamburger-menu {
    width: 20px;
    height: 20px;
    display: block;
    background: linear-gradient(to bottom, red, #280E6199 20%, transparent 20%, transparent 40%, red 40%, #280E6199 60%, transparent 60%, transparent 80%, red 80%, #280E6199 100%);
    cursor: pointer;
    border: none;
}

/* SLIDE IN TRANSITION EFFECT */
.sidebar-menu {
    position: absolute;
    top: 57px;
    left: -770px; /* Start off-screen */
    width: 100%;
    transition: 0.3s; /* Slide-in duration */
    background-color: #000000;
    margin-left: 0;
    border-bottom: solid 1px darkred;
}

.show {
    position: absolute;
    left: 0;
}


/* ------------------------------------------------------------------------------------------- */

 
/* header importing from homepage */
#name_text {
    font-size: 15px;
    background-color: transparent;
}

.top-nav-a {
    /* margin-left: 7px; */
    text-decoration: none;
    color: aliceblue;
    padding: 10px;
    font-family: 'Tilt Neon', sans-serif;
}

nav a.top-nav-a:hover {
    color: #0088cc;
}

#instruction {
    margin: 30px 0 0 10%;
    width: 41%;
    letter-spacing: 2px;
}

.title_text {
    font-size: 18px;
}

.videoBg-container {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -1;
    background-size: cover;
}

.videoBg-container video {
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    -ms-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}

.content-main-wrapper {
    color: azure;
    border-left: solid #0088cc 1px;
    border-top-left-radius: 2px;
    padding-top: 12px;
    width: 96%;
    border-top-width: 2px;
    border-left-width: 1px;
    min-height: 554px;
    margin-top: 68px;
}
.servicesContainer {
    display: flex;
    justify-content: space-around;
    margin-top: 40px;
    height: 345px
}
.servicesListContainer {   /*this contains the three ul's */ 
    color: aliceblue;
    display: flex;
    padding-left: 6px;
    flex-direction: column;
    width: 33%;
    align-items: center; 
}
.serviceDetail {
    padding-left: 0;
    width: 100%;
    list-style: none;
}

.detailText {
    width: 90%;
    text-align: center;
    margin-bottom: 2px;
}
.servicesButton {
    color: #ffffff;
    min-height: 42px;
    background-color: #0088cc;
    font-size: 1.2rem;
    border: none;
    border-radius: 2px;
    padding: 7px 4px;
    letter-spacing: 3px;
    cursor: pointer;
    width: 100%;
    font-size: 0.7rem;
}

.detail-text-show {
    line-height: 15px;
    font-size: 1.1rem;
    min-height: 70px;
    height: fit-content;
    border-style: solid;
    border-width: 8px 1px 1px;
    border-color: cornflowerblue;
    width: 100%;
    background-color: rgba(136, 65, 221, 0.09);
    border-radius: 3px;
    padding: 8px 2px 2px 3px;
}

#focus {
    color: #0088cc;
}
.servicesButton:hover {
    color: #2d63c8;
    background-color: #ffffff;
}

.active {
    z-index: 1;
}

.active::before {
    position: absolute;
    content: '';
    background: #2074cd61;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: inset 0 0 0 3000px rgba(150, 150, 150, 0.592);
    filter: blur(3px);
    border-radius: 2px;
    z-index: -1;
}

.performanceWrapper {
    margin-top: 60px;
    width: 90%;
    display: flex;
    flex-wrap: wrap;
    color: cornsilk;

}

#overview-list {
    list-style-type: disc;
}

#overview-li-item::marker {
    color:#ac11aa;
}


#performanceHeader {
    color: antiquewhite;
    
}
.performance-text, .process-text {
    width: 85%;
    padding: 17px;
}

/* box shadow for performance-text cornflowerblue 10px 7px 5px; -- for scroll animation effect */

.alt-color {
    color: #ac11aa;
    display:block;
    /* maybe have some transform animation here */
}


.info-container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* performance section slide effect --------------------------- */

.slide-in {
    transform: translateX(0);
    transition: transform 0.5s ease-in-out;
}
  
.hidden-header {
    transform: translateX(150vw);
    transition: transform 0.5s ease-in-out;
}

/* Software Container + logos section */

.tech-stack-wrap, .processSection {
    width: 96%;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    color: azure;
    border-right: solid 1px cornflowerblue;
}

.tech-stack-wrap {
    padding: 10px;
}

.processSection {
    border-right: none;
    border-left: solid 1px cornflowerblue;
}

.software-image {
    width: 75px;
    height: 75px;
    margin: 7px;
    transition: transform 0.2s ease; 
}

.software-image:hover {
    transform: scale(1.25);
}

.software-image-wrap {
    display: flex;
    width: 301px;
    flex-wrap: wrap;
    border-radius: 3px;
    padding: 10px;
    max-height: min-content;
    background-color: #00ffffb2;
    justify-content: center;
}

/* performance paragraph slide effect */
#p-One {
    transform: translateX(-150%);
    transition: transform 0.5 ease-in-out;
}


/* footer styling -----------------------------------------------------------------------------*/

.fa-brands {
    font-size: 2.5rem;
    font-weight: normal;
    margin: 5px;
}
#linkedin {
    color: fuchsia;
}
#twitter {
    color: cornflowerblue;
}
#footer-socials {
    margin: 10px auto;
}
#email-link {
    font-size: 1.7rem;
    color: #e7e3df;
    font-family: 'Tilt Neon', sans-serif;
    padding: 3px;
    text-decoration: none;
}
footer {
    background-color: rgba(57, 57, 232, 0.63);
    color: white;
    text-align: center;
    padding: 20px;
    margin-top: 7px;
}
.footer-msg {
    background-color: rgba(0,0,0,0.7);
    border-radius: 4px;
    transform: rotate(3deg);
    width: 60%;
    margin: 0 auto;
    font-size: 2.1rem;
    padding: 3px;
}

footer > a {
    font-size: 2.3rem;
    color: aliceblue;
    text-decoration: none;
}


@media screen and (min-width: 315px) {
    .servicesButton {
        font-size: 0.9rem;
    }
}

@media screen and (max-width: 343px) {
    .servicesContainer {
        height: min-content;
    }
}

@media screen and (min-width: 500px){
    html {
        font-size: 13px;
    }
    .servicesButton {
        font-size: 1.1rem;
    }
    #overview-list {
        width: 70%;
    }
}

@media screen and (max-width: 768px) {
    header {
        justify-content: space-around;
    }
    #larger-device-menu {
        display: none;
    }
    html {
        width: 100svw;
    }
}

@media screen and (min-width: 769px) {
    #hamburger-menu {
        display: none;
    }
    .servicesButton {
        font-size: 1.3rem;
    }
    .footer-msg {
        width: 43%;
        margin: 0 auto;
    }
}


@media only screen and (min-width: 600px) {
    p, ul {
        line-height: 22px;
    }
    .serviceDetail > li {
        line-height: 16px; /*using cascade*/ 
        font-size: 15px;
    }
    html {
        font-size: 10px;
    }
}

@media screen and (min-width: 900px) {
    html {
        font-size: 11px;
    }
}

@media only screen and (min-width: 1000px) {
    html {
        font-size: 12px;
    }
    .servicesListContainer {
      width: 30%;
    }
    .software-image-wrap {
        width: 436px;
    }
  .footer-msg { 
        width: 29%;
    }
  }

@media only screen and (min-width: 1100px) {
  #overview-list {
  	line-height: 34px;
  } 
}  
