/*Extra Large Screens*/
@media screen and (min-width:1200px){
    /* css for content space and space planning */
    #contentSpace {
        height: max-content;
        background-color: #35424a;
        padding:1px;
        padding-bottom: 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #contentSpace h1 {
        color:white;
        margin-bottom: 35px;
        margin-top: 44px;
        font-size: 50px;

    }
    #contentGrid {
        height: max-content;
        padding-top:0.5vh;
        padding-bottom:0.5vh;
        width:80%;
        align-items: center;
        justify-content: center;
        justify-items: center;
        display:flex;
        flex-wrap: wrap;
    }

    /* title header */
    #titleHeader {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #titleHeader i {
        margin:20px;
        font-size: 50px;
        color:white;
    }
    #titleHeader i:hover {
        color:grey;
    }

    /*each individual project card css */
    /* card1 */
    .card1 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-top:20px;
        margin-bottom:20px;
    }
    /* card2 */
    .card2 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card3 */
    .card3 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card4 */
    .card4 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card5 */
    .card5 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card6 */
    .card6 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card7 */
    .card7 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card8 */
    .card8 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card9 */
    .card9 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card10 */
    .card10 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card11 */
    .card11 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card12 */
    .card12 { /*general card formatting*/
        height: 400px;
        width: 350px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }

    /*img and descrip formatting*/
    .cardContent {
        width: 300px;
        bottom:0;
        position:absolute;
        background-color: white;
        opacity: 0.5;
        transition: 0.5s ease;
    }
    .cardContent h3 {
        margin:0px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
    }
    .imgSpace {
        height: 400px;
        width: 300px; 
        display: flex;
        border-radius: 5px;
        padding:3px;
        position:absolute;
        background-color: rgb(255, 255, 255);
        box-shadow: 3px 3px red, -1em 0 .4em #0f0c2c;
    }
    .cardImage {
        height:100%;
        width:100%;
        object-fit: cover;
        border-radius: 5px;
        filter: brightness(80%);
        transition: 0.5s ease;
    }
    /*card image preview */
    .cardSpace {
        cursor:pointer;
        height: 400px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
    }
    .cardSpace:hover .cardContent {
        opacity:1;
    }
    .cardSpace:hover .cardImage {
        filter:brightness(60%);
    }

    /*hidden info after clicking on card, hidden info is on SLIDE */
    .items {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 94vh;
        overflow: hidden;
        visibility: hidden;
        transition: .8s;
        display: flex;
        align-items: top;
        justify-content: center;
        z-index: 9999;
    }
    .items.active {
        visibility: visible;
    }
    .items.active .slide {
        left: 0;
    }
    /* SLIDE content space, same for each card */
    .slide {
        position:relative;
        left: 100%;
        display: flex;
        font-size: 20px;
        background: #D3d3d3;
        color: #222;
        text-decoration: none;
        border-radius: 25px;
        padding: 10px 15px;
        width:90vw;
        max-height:80vh;
        overflow: hidden;
        transition: .8s;
        z-index: 2;
    }
    /* close button same for each card */
    .slide .close {
        height:max-content;
        width: max-content;
        padding:0px;
        display:absolute;
        right:0;
        color:rgb(90, 90, 90);
        background-color: rgb(172, 172, 172);
        border-radius: 50%;
        padding:1px 5px;
        margin-top:4px;
        cursor: pointer;
        right:0;
        transition: 0.5s ease;
    }
    .slide .close:hover {
        color:rgb(182, 0, 0);
        background-color: rgb(129, 129, 129);;
    }
    /* project information within each card */
    .slide .sectionInfo {
        margin: 25px 10px;
        margin-right:25px;
        padding:1px;
        height:93%;
        width:100%;
        display:flex;
        flex-direction: column;
        overflow-y: auto;
        scrollbar-width:initial;
        scrollbar-color: grey #d3d3d3;
        scroll-behavior: smooth;
    }

    .sectionInfo h2 {
        margin:10px;
        font-size: 40px;
        padding:1px;
    }

    h4 {
        font-size: 25px;
        font-weight: 500;
        margin-top:10px;
        margin-bottom:10px;
    }

    .sectionInfo .style1 {
        color: black;
        height:max-content;
        max-width:100%;
        padding:1px;
        margin:20px;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .sectionInfo .style2 {
        color:#D3d3d3;
        background-color:#0f0c2c;
        height:max-content;
        max-width:100%;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 15px;
        padding:20px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .sectionInfo .style3 {
        color:#D3d3d3;
        background-color:#35424a;
        height:max-content;
        max-width:100%;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 15px;
        padding:20px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .projectInfo {
        color:inherit;
        font-size: 18px;
        font-weight: 300;
        text-decoration: none;
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: left;
        height:auto;
    }

    .projectImage {
        max-height:80%;
        width:35%;
        border-radius: 5px;
        filter: brightness(80%);
        box-shadow: 2px 2px 3px black, -2px -2px 3px black;
        position: relative;
    }

    .projectImage img {
        height:100%;
        width:100%;    
        object-fit: cover;
    }

    .projectInfo p, .projectInfo ul, .projectInfo li {
        max-width:60%;
        font-size: inherit;
        margin:10px 25px;
        position:relative;
        word-wrap: normal;
        text-align: left;
        height: max-content;
    }
    .items .blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transition:0.35s;
    }
    
    .items.active .blur {
        -webkit-backdrop-filter: blur(6px) brightness(50%);
        backdrop-filter: blur(6px) brightness(50%);
    }
}

/*Large Screens*/
@media screen and (min-width:992px) and (max-width:1199px){
    /* css for content space and space planning */
    #contentSpace {
        height: max-content;
        background-color: #35424a;
        padding:1px;
        padding-bottom: 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #contentSpace h1 {
        color:white;
        margin-bottom: 35px;
        margin-top: 44px;
        font-size: 40px;

    }
    #contentGrid {
        height: max-content;
        padding-top:0.5vh;
        padding-bottom:0.5vh;
        width:80%;
        align-items: center;
        justify-content: center;
        justify-items: center;
        display:flex;
        flex-wrap: wrap;
    }

    /* title header */
    #titleHeader {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #titleHeader i {
        margin:20px;
        font-size: 40px;
        color:white;
    }
    #titleHeader i:hover {
        color:grey;
    }

    /*each individual project card css */
    /* card1 */
    .card1 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-top:20px;
        margin-bottom:20px;
    }
    /* card2 */
    .card2 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card3 */
    .card3 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card4 */
    .card4 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card5 */
    .card5 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card6 */
    .card6 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card7 */
    .card7 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card8 */
    .card8 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card9 */
    .card9 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card10 */
    .card10 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card11 */
    .card11 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card12 */
    .card12 { /*general card formatting*/
        height: 350px;
        width: 300px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }

    /*img and descrip formatting*/
    .cardContent {
        width: 250px;
        bottom:0;
        position:absolute;
        background-color: white;
        opacity: 0.5;
        transition: 0.5s ease;
    }
    .cardContent h3 {
        margin:0px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
        font-size: 17px;
    }
    .imgSpace {
        height: 350px;
        width: 250px; 
        display: flex;
        border-radius: 5px;
        padding:3px;
        position:absolute;
        background-color: rgb(255, 255, 255);
        box-shadow: 3px 3px red, -1em 0 .4em #0f0c2c;
    }
    .cardImage {
        height:100%;
        width:100%;
        object-fit: cover;
        border-radius: 5px;
        filter: brightness(80%);
        transition: 0.5s ease;
    }
    /*card image preview */
    .cardSpace {
        cursor:pointer;
        height: 350px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
    }
    .cardSpace:hover .cardContent {
        opacity:1;
    }
    .cardSpace:hover .cardImage {
        filter:brightness(60%);
    }

    /*hidden info after clicking on card, hidden info is on SLIDE */
    .items {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 94vh;
        overflow: hidden;
        visibility: hidden;
        transition: .8s;
        display: flex;
        align-items: top;
        justify-content: center;
        z-index: 9999;
    }
    .items.active {
        visibility: visible;
    }
    .items.active .slide {
        left: 0;
    }
    /* SLIDE content space, same for each card */
    .slide {
        position:relative;
        left: 100%;
        display: flex;
        font-size: 20px;
        background: #D3d3d3;
        color: #222;
        text-decoration: none;
        border-radius: 25px;
        padding: 10px 15px;
        width:90vw;
        max-height:80vh;
        overflow: hidden;
        transition: .8s;
        z-index: 2;
    }
    /* close button same for each card */
    .slide .close {
        height:max-content;
        width: max-content;
        padding:0px;
        display:absolute;
        right:0;
        color:rgb(90, 90, 90);
        background-color: rgb(172, 172, 172);
        border-radius: 50%;
        padding:1px 5px;
        margin-top:4px;
        cursor: pointer;
        right:0;
        transition: 0.5s ease;
    }
    .slide .close:hover {
        color:rgb(182, 0, 0);
        background-color: rgb(129, 129, 129);;
    }
    /* project information within each card */
    .slide .sectionInfo {
        margin: 25px 10px;
        margin-right:25px;
        padding:1px;
        height:93%;
        width:100%;
        display:flex;
        flex-direction: column;
        overflow-y: auto;
        scrollbar-width:initial;
        scrollbar-color: grey #d3d3d3;
        scroll-behavior: smooth;
    }

    .sectionInfo h2 {
        margin:10px;
        font-size: 40px;
        padding:1px;
    }

    h4 {
        font-size: 25px;
        font-weight: 500;
        margin-top:10px;
        margin-bottom:10px;
    }

    .sectionInfo .style1 {
        color: black;
        height:max-content;
        max-width:100%;
        padding:1px;
        margin:20px;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .sectionInfo .style2 {
        color:#D3d3d3;
        background-color:#0f0c2c;
        height:max-content;
        max-width:100%;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 15px;
        padding:20px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .sectionInfo .style3 {
        color:#D3d3d3;
        background-color:#35424a;
        height:max-content;
        max-width:100%;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 15px;
        padding:20px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .projectInfo {
        color:inherit;
        font-size: 16px;
        font-weight: 300;
        text-decoration: none;
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: left;
        height:auto;
    }

    .projectImage {
        min-height:80%;
        width:35%;
        border-radius: 5px;
        filter: brightness(80%);
        box-shadow: 2px 2px 3px black, -2px -2px 3px black;
        position: relative;
    }

    .projectImage img {
        height:100%;
        width:100%;    
        object-fit: cover;
    }

    .projectInfo p, .projectInfo ul, .projectInfo li {
        max-width:55%;
        font-size: inherit;
        margin:10px 25px;
        position:relative;
        word-wrap: normal;
        text-align: left;
        height: max-content;
    }

    .items .blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transition:0.35s;
    }
    
    .items.active .blur {
        -webkit-backdrop-filter: blur(6px) brightness(50%);
        backdrop-filter: blur(6px) brightness(50%);
    }
}

/*Medium Screens*/
@media screen and (min-width:768px) and (max-width:991px){
    /* css for content space and space planning */
    #contentSpace {
        height: max-content;
        background-color: #35424a;
        padding:1px;
        padding-bottom: 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #contentSpace h1 {
        color:white;
        margin-bottom: 35px;
        margin-top: 44px;
        font-size: 30px;

    }
    #contentGrid {
        height: max-content;
        padding-top:0.5vh;
        padding-bottom:0.5vh;
        width:80%;
        align-items: center;
        justify-content: center;
        justify-items: center;
        display:flex;
        flex-wrap: wrap;
    }

    /* title header */
    #titleHeader {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #titleHeader i {
        margin:20px;
        font-size: 30px;
        color:white;
    }
    #titleHeader i:hover {
        color:grey;
    }

    /*each individual project card css */
    /* card1 */
    .card1 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-top:20px;
        margin-bottom:20px;
    }
    /* card2 */
    .card2 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card3 */
    .card3 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card4 */
    .card4 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card5 */
    .card5 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card6 */
    .card6 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card7 */
    .card7 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card8 */
    .card8 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card9 */
    .card9 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card10 */
    .card10 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card11 */
    .card11 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card12 */
    .card12 { /*general card formatting*/
        height: 300px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }

    /*img and descrip formatting*/
    .cardContent {
        width: 200px;
        bottom:0;
        position:absolute;
        background-color: white;
        opacity: 0.5;
        transition: 0.5s ease;
    }
    .cardContent h3 {
        margin:0px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
        font-size: 15px;
    }
    .imgSpace {
        height: 300px;
        width: 200px; 
        display: flex;
        border-radius: 5px;
        padding:3px;
        position:absolute;
        background-color: rgb(255, 255, 255);
        box-shadow: 3px 3px red, -1em 0 .4em #0f0c2c;
    }
    .cardImage {
        height:100%;
        width:100%;
        object-fit: cover;
        border-radius: 5px;
        filter: brightness(80%);
        transition: 0.5s ease;
    }
    /*card image preview */
    .cardSpace {
        cursor:pointer;
        height: 300px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
    }
    .cardSpace:hover .cardContent {
        opacity:1;
    }
    .cardSpace:hover .cardImage {
        filter:brightness(60%);
    }

    /*hidden info after clicking on card, hidden info is on SLIDE */
    .items {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 94vh;
        overflow: hidden;
        visibility: hidden;
        transition: .8s;
        display: flex;
        align-items: top;
        justify-content: center;
        z-index: 9999;
    }
    .items.active {
        visibility: visible;
    }
    .items.active .slide {
        left: 0;
    }
    /* SLIDE content space, same for each card */
    .slide {
        position:relative;
        left: 100%;
        display: flex;
        font-size: 20px;
        background: #D3d3d3;
        color: #222;
        text-decoration: none;
        border-radius: 25px;
        padding: 10px 15px;
        width:90vw;
        max-height:80vh;
        overflow: hidden;
        transition: .8s;
    }
    /* close button same for each card */
    .slide .close {
        height:max-content;
        width: max-content;
        padding:0px;
        display:absolute;
        right:0;
        color:rgb(90, 90, 90);
        background-color: rgb(172, 172, 172);
        border-radius: 50%;
        padding:1px 5px;
        margin-top:4px;
        cursor: pointer;
        right:0;
        transition: 0.5s ease;
    }
    .slide .close:hover {
        color:rgb(182, 0, 0);
        background-color: rgb(129, 129, 129);;
    }
    /* project information within each card */
    .slide .sectionInfo {
        margin: 25px 10px;
        margin-right:25px;
        padding:1px;
        height:93%;
        width:100%;
        display:flex;
        flex-direction: column;
        overflow-y: auto;
        scrollbar-width:initial;
        scrollbar-color: grey #d3d3d3;
        scroll-behavior: smooth;
    }

    .sectionInfo h2 {
        margin:10px;
        font-size: 30px;
        padding:1px;
    }

    h4 {
        font-size: 20px;
        font-weight: 500;
        margin-top:10px;
        margin-bottom:10px;
    }

    .sectionInfo .style1 {
        color: black;
        height:max-content;
        max-width:100%;
        padding:1px;
        margin:20px;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .sectionInfo .style2 {
        color:#D3d3d3;
        background-color:#0f0c2c;
        height:max-content;
        max-width:100%;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 15px;
        padding:20px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .sectionInfo .style3 {
        color:#D3d3d3;
        background-color:#35424a;
        height:max-content;
        max-width:100%;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 15px;
        padding:20px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .projectInfo {
        color:inherit;
        font-size: 15px;
        font-weight: 300;
        text-decoration: none;
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: left;
        height:auto;
    }

    .projectImage {
        min-height:80%;
        width:35%;
        border-radius: 5px;
        filter: brightness(80%);
        box-shadow: 2px 2px 3px black, -2px -2px 3px black;
        position: relative;
    }

    .projectImage img {
        height:100%;
        width:100%;    
        object-fit: cover;
    }

    .projectInfo p, .projectInfo ul, .projectInfo li {
        max-width:55%;
        font-size: inherit;
        margin:10px 25px;
        position:relative;
        word-wrap: normal;
        text-align: left;
        height: max-content;
    }

    .items .blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transition:0.35s;
    }
    
    .items.active .blur {
        -webkit-backdrop-filter: blur(6px) brightness(50%);
        backdrop-filter: blur(6px) brightness(50%);
    }
}

/*Small Screens*/
@media screen and (min-width:576px) and (max-width:767px){
    /* css for content space and space planning */
    #contentSpace {
        height: max-content;
        background-color: #35424a;
        padding:1px;
        padding-bottom: 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #contentSpace h1 {
        color:white;
        margin-bottom: 20px;
        margin-top: 30px;
        font-size: 25px;

    }
    #contentGrid {
        height: max-content;
        padding-top:0.5vh;
        padding-bottom:0.5vh;
        width:90%;
        align-items: center;
        justify-content: center;
        justify-items: center;
        display:flex;
        flex-wrap: wrap;
    }

    /* title header */
    #titleHeader {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #titleHeader i {
        margin:20px;
        font-size: 25px;
        color:white;
    }
    #titleHeader i:hover {
        color:grey;
    }

    /*each individual project card css */
    /* card1 */
    .card1 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-top:20px;
        margin-bottom:20px;
    }
    /* card2 */
    .card2 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card3 */
    .card3 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card4 */
    .card4 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card5 */
    .card5 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card6 */
    .card6 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card7 */
    .card7 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card8 */
    .card8 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card9 */
    .card9 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card10 */
    .card10 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card11 */
    .card11 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card12 */
    .card12 { /*general card formatting*/
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }

    /*img and descrip formatting*/
    .cardContent {
        width: 150px;
        bottom:0;
        position:absolute;
        background-color: white;
        opacity: 1;
        transition: 0.5s ease;
    }
    .cardContent h3 {
        margin:0px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
        font-size: 15px;
    }
    .imgSpace {
        height: 200px;
        width: 150px; 
        display: flex;
        border-radius: 5px;
        padding:3px;
        position:absolute;
        background-color: rgb(255, 255, 255);
        box-shadow: 3px 3px red, -1em 0 .4em #0f0c2c;
    }
    .cardImage {
        height:100%;
        width:100%;
        object-fit: cover;
        border-radius: 5px;
        filter: brightness(80%);
        transition: 0.5s ease;
    }
    /*card image preview */
    .cardSpace {
        cursor:pointer;
        height: 200px;
        width: 150px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
    }


    /*hidden info after clicking on card, hidden info is on SLIDE */
    .items {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 94vh;
        overflow: hidden;
        visibility: hidden;
        transition: .8s;
        display: flex;
        align-items: top;
        justify-content: center;
        z-index: 9999;
    }
    .items.active {
        visibility: visible;
    }
    .items.active .slide {
        left: 0;
    }
    /* SLIDE content space, same for each card */
    .slide {
        position:relative;
        left: 100%;
        display: flex;
        font-size: 20px;
        background: #D3d3d3;
        color: #222;
        text-decoration: none;
        border-radius: 25px;
        padding: 10px 15px;
        width:90vw;
        max-height:80vh;
        overflow: hidden;
        transition: .8s;
    }
    /* close button same for each card */
    .slide .close {
        height:max-content;
        width: max-content;
        padding:0px;
        display:absolute;
        right:0;
        color:rgb(90, 90, 90);
        background-color: rgb(172, 172, 172);
        border-radius: 50%;
        padding:1px 5px;
        margin-top:4px;
        cursor: pointer;
        right:0;
        transition: 0.5s ease;
    }
    .slide .close:hover {
        color:rgb(182, 0, 0);
        background-color: rgb(129, 129, 129);;
    }
    /* project information within each card */
    .slide .sectionInfo {
        margin: 25px 10px;
        margin-right:25px;
        padding:1px;
        height:93%;
        width:100%;
        display:flex;
        flex-direction: column;
        overflow-y: auto;
        scrollbar-width:initial;
        scrollbar-color: grey #d3d3d3;
        scroll-behavior: smooth;
    }

    .sectionInfo h2 {
        margin:10px;
        font-size: 25px;
        padding:1px;
    }

    h4 {
        font-size: 18px;
        font-weight: 500;
        margin-top:10px;
        margin-bottom:10px;
    }

    .sectionInfo .style1 {
        color: black;
        height:max-content;
        max-width:100%;
        padding:1px;
        margin:10px;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .sectionInfo .style2 {
        color:#D3d3d3;
        background-color:#0f0c2c;
        height:max-content;
        max-width:100%;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 15px;
        padding:10px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .sectionInfo .style3 {
        color:#D3d3d3;
        background-color:#35424a;
        height:max-content;
        max-width:100%;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 15px;
        padding:10px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .projectInfo {
        color:inherit;
        font-size: 15px;
        font-weight: 300;
        text-decoration: none;
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: left;
        height:auto;
    }

    .projectImage {
        max-height:80%;
        width:100%;
        border-radius: 5px;
        filter: brightness(80%);
        box-shadow: 2px 2px 3px black, -2px -2px 3px black;
        position: relative;
    }

    .projectImage img {
        height:100%;
        width:100%;    
        object-fit: cover;
    }

    .projectInfo p, .projectInfo ul, .projectInfo li {
        width:100%;
        font-size: inherit;
        margin:10px 25px;
        position:relative;
        word-wrap: normal;
        text-align: left;
        height: max-content;
    }

    .items .blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transition:0.35s;
    }
    
    .items.active .blur {
        -webkit-backdrop-filter: blur(6px) brightness(50%);
        backdrop-filter: blur(6px) brightness(50%);
    }
}

/*Mobile Screens*/
@media screen and (max-width:575px){
    /* css for content space and space planning */
    #contentSpace {
        height: max-content;
        background-color: #35424a;
        padding:1px;
        padding-bottom: 60px;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    #contentSpace h1 {
        color:white;
        margin-bottom: 10px;
        margin-top: 30px;
        font-size: 25px;

    }
    #contentGrid {
        height: max-content;
        padding-top:0.5vh;
        padding-bottom:0.5vh;
        width:90%;
        align-items: center;
        justify-content: center;
        justify-items: center;
        display:flex;
        flex-wrap: wrap;
    }

    /* title header */
    #titleHeader {
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #titleHeader i {
        margin:20px;
        font-size: 20px;
        color:white;
    }
    #titleHeader i:hover {
        color:grey;
    }

    /*each individual project card css */
    /* card1 */
    .card1 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-top:20px;
        margin-bottom:20px;
    }
    /* card2 */
    .card2 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card3 */
    .card3 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card4 */
    .card4 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card5 */
    .card5 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card6 */
    .card6 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card7 */
    .card7 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card8 */
    .card8 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card9 */
    .card9 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card10 */
    .card10 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card11 */
    .card11 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }
    /* card12 */
    .card12 { /*general card formatting*/
        height: 200px;
        width: 250px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
        margin-bottom:20px;
        margin-top:20px;

    }

    /*img and descrip formatting*/
    .cardContent {
        width: 200px;
        bottom:0;
        position:absolute;
        background-color: white;
        opacity: 1;
        transition: 0.5s ease;
    }
    .cardContent h3 {
        margin:0px;
        padding-left: 5px;
        padding-right: 5px;
        padding-top: 15px;
        padding-bottom: 15px;
        text-align: center;
        font-size: 15px;
    }
    .imgSpace {
        height: 200px;
        width: 200px; 
        display: flex;
        border-radius: 5px;
        padding:3px;
        position:absolute;
        background-color: rgb(255, 255, 255);
        box-shadow: 3px 3px red, -1em 0 .4em #0f0c2c;
    }
    .cardImage {
        height:100%;
        width:100%;
        object-fit: cover;
        border-radius: 5px;
        filter: brightness(80%);
        transition: 0.5s ease;
    }
    /*card image preview */
    .cardSpace {
        cursor:pointer;
        height: 200px;
        width: 200px;
        align-items: center;
        justify-content: center;
        display:flex;
        position:relative;
    }


    /*hidden info after clicking on card, hidden info is on SLIDE */
    .items {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        height: 94vh;
        overflow: hidden;
        visibility: hidden;
        transition: .8s;
        display: flex;
        align-items: top;
        justify-content: center;
        z-index: 9999;
    }
    .items.active {
        visibility: visible;
    }
    .items.active .slide {
        left: 0;
    }
    /* SLIDE content space, same for each card */
    .slide {
        position:relative;
        left: 100%;
        display: flex;
        font-size: 20px;
        background: #D3d3d3;
        color: #222;
        text-decoration: none;
        border-radius: 25px;
        padding: 10px 15px;
        width:90vw;
        max-height:80vh;
        overflow: hidden;
        transition: .8s;
    }
    /* close button same for each card */
    .slide .close {
        height:max-content;
        width: max-content;
        padding:0px;
        display:absolute;
        right:0;
        color:rgb(90, 90, 90);
        background-color: rgb(172, 172, 172);
        border-radius: 50%;
        padding:1px 5px;
        margin-top:4px;
        cursor: pointer;
        right:0;
        transition: 0.5s ease;
    }
    .slide .close:hover {
        color:rgb(182, 0, 0);
        background-color: rgb(129, 129, 129);;
    }
    /* project information within each card */
    .slide .sectionInfo {
        margin: 25px 10px;
        margin-right:25px;
        padding:1px;
        height:93%;
        width:100%;
        display:flex;
        flex-direction: column;
        overflow-y: auto;
        scrollbar-width:initial;
        scrollbar-color: grey #d3d3d3;
        scroll-behavior: smooth;
    }

    .sectionInfo h2 {
        margin:10px;
        font-size: 25px;
        padding:1px;
    }

    h4 {
        font-size: 18px;
        font-weight: 500;
        margin-top:10px;
        margin-bottom:10px;
        text-decoration: underline;
    }

    .sectionInfo .style1 {
        color: black;
        height:max-content;
        max-width:100%;
        padding:1px;
        margin:5px;
        display: flex;
        flex-direction: column;
        text-align: left;
    }

    .sectionInfo .style2 {
        color:#D3d3d3;
        background-color:#0f0c2c;
        height:max-content;
        max-width:100%;
        border-top-left-radius: 15px;
        border-bottom-right-radius: 15px;
        padding:5px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .sectionInfo .style3 {
        color:#D3d3d3;
        background-color:#35424a;
        height:max-content;
        max-width:100%;
        border-top-right-radius: 15px;
        border-bottom-left-radius: 15px;
        padding:5px;
        display: flex;
        flex-direction: column;
        text-align: right;
    }

    .projectInfo {
        color:inherit;
        font-size: 15px;
        font-weight: 300;
        text-decoration: none;
        display:flex;
        flex-direction: row;
        flex-wrap: wrap;
        align-items: left;
        height:auto;
    }

    .projectImage {
        max-height:80%;
        width:100%;
        border-radius: 5px;
        filter: brightness(80%);
        box-shadow: 2px 2px 3px black, -2px -2px 3px black;
        position: relative;
    }

    .projectImage img {
        height:100%;
        width:100%;    
        object-fit: cover;
    }

    .projectInfo p, .projectInfo ul, .projectInfo li {
        width:100%;
        font-size: inherit;
        margin:10px 10px;
        position:relative;
        word-wrap: normal;
        text-align: left;
        height: max-content;
    }

    .items .blur {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        transition:0.35s;
    }
    
    .items.active .blur {
        -webkit-backdrop-filter: blur(6px) brightness(50%);
        backdrop-filter: blur(6px) brightness(50%);
    }
}