:root {
    
    /* Perfect Fifth */
    /* --size-080: .444rem;
    --size-090: .667;
    --size-100: 1rem;
    --size-200: 1.5rem;
    --size-300: 2.25rem;
    --size-400: 3.375rem;
    --size-500: 5.063rem;
    --size-600: 7.594rem;
    --size-700: 11.391rem; */

    /* Perfect Fourth */
    --size-080: .563rem;
    --size-090: .75rem;
    --size-100: 1rem;
    --size-200: 1.333rem;
    --size-300: 1.777rem;
    --size-400: 2.369rem;
    --size-500: 3.157rem;
    --size-600: 4.209rem;
    --size-700: 5.61rem;

    /* Minor Third */
    /* --size-080: .0694rem;
    --size-090: .0833rem;
    --size-100: 1rem;
    --size-200: 1.2rem;
    --size-300: 1.44rem;
    --size-400: 1.728rem;
    --size-500: 2.074rem;
    --size-600: 2.488rem;
    --size-700: 2.986rem; */

    /* This will modify the root size of the font size variable */

    @media screen and (min-width: 400px) {
        font-size: 1.05rem;
    }
    @media screen and (min-width: 600px) {
        font-size: 1.1rem;
    }
    @media screen and (min-width: 800px) {
        font-size: 1.2rem;
    }
    @media screen and (min-width: 1000px) {
        font-size: 1.25rem;
    }
    @media screen and (min-width: 1200px) {
        font-size: 1.3rem;
    }
    @media screen and (min-width: 1400px) {
        font-size: 1.4rem;
    }
}
    :root {
        --color-box-bg: #2F4F4F;
        --color-page-bg: #fff9e6;
        --color-text: #262626;
        --color-text-secondary: #490000;
        --color-text-reversed: #fff9e6;
        --color-text-reversed-secondary: #fff9e6;
        --color-highlight: #fbc32d;
        --txt:#36454F;
        --title:#0A0A0A;

        .dark-mode {
            --color-box-bg: #490000;
            --color-page-bg: #262626;
            --color-text: #fff9e6;
            --color-text-secondary: #fff9e6;
            --color-text-reversed: #490000;
            --color-text-reversed-secondary: #fff9e6;
            --color-highlight: #fbc32d;
        }
    }




body{
    margin: 0;
}

/* Overflow in the body when about button is triggered */
.no-overflow{
    overflow: hidden;
}


/* Dark Mode icons */
.div-dark-mode{
    position: fixed;
    top: 0.5rem;
    left: 1rem;
    width: fit-content;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;   
    z-index: 999;
    /* Desktop Size Media */
    @media screen and (min-width: 600px) {
        position: fixed;
        top: 0;
        left: 1.5rem;
        width: fit-content;
        height: 100vh;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;   
        z-index: 999;
    }
    .div-icon{
        /* position: absolute; */
        height: 35px;
        width: 35px;
        border-radius: 50%;
        top: 0;
        border: 1px solid;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;   
        background-color: white;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
        /* position: absolute; */
        height: 35px;
        width: 35px;
        border-radius: 50%;
        top: 0;
        border: 1px solid;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;   
        }
        img{
            width: 20px;
            height: auto;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                width: 20px;
                height: auto;
            }
        }
    }
}

/*-- CV-Button --*/
/*-- CV-Button --*/

@media screen and (min-width: 600px) {
    
}
.div-cv{
    position: fixed;
    top: 0.5rem;
    padding: 0rem 0.6rem 0rem 0.6rem;
    /* right: 1rem; */
    /* background-color: var(--color-box-bg); */
    width: 100%;
    /* cursor: pointer; */
    z-index: 999;
    display: flex;
    justify-content: space-between;
    @media screen and (min-width: 600px) {
        position: fixed;
        top: 0.5rem;
        /* right: 1rem; */
        /* background-color: var(--color-box-bg); */
        width: 100%;
        /* cursor: pointer; */
        z-index: 999;
        background-color: transparent;
    }
    ul{
        /* background-color: aqua; */
        display: flex;
        flex-direction: column;
        align-items: center;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
            li{     
                margin-right: 0;    
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    margin-right: 0;    
                } 
                a{
                width: auto;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: auto;
                }
                
                img{   
                    background-color: white;
                    border-radius: 0.25rem;          
                    }
                }
            }
            li:last-child{
                margin-right: 0;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    margin-right: 0;
                }
            }
        }
    .cv-link{
        color: var(--title);
        font-family: "ainslie-sans-extended", sans-serif;
        text-decoration: none;
        font-weight: 500;
        font-style: normal;
        font-size: 0.8rem;
        padding: 0.2rem 0.5rem 0.2rem 0.5rem;
        border: 1px solid var(--title);
        border-radius: 1rem;
        height: fit-content;
        background-color: white;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            color: var(--title);
            font-family: "ainslie-sans-extended", sans-serif;
        }
    }
}
/* .div-cv:hover{
    background-color: var(--title); */
    /* Desktop Size Media */
    /* @media screen and (min-width: 600px) {
        background-color: var(--title);
    }
    a{
        color: white; */
        /* Desktop Size Media */
        /* @media screen and (min-width: 600px) {
            color: white;
        }
    }
} */

/* .div-cv-active{
    background-color: var(--title); */
    /* Desktop Size Media */
    /* @media screen and (min-width: 600px) {
        background-color: var(--title);  
    }
    p{
        color: white; */
        /* Desktop Size Media */
        /* @media screen and (min-width: 600px) {
            color: white;  
        }
    } 
} */

/*-- Back Button--*/
/*-- Back Button--*/

.div-back{
    position: fixed;
    top: 0.5rem;
    left: 5.5rem;
    padding: 0.2rem 0.5rem;
    border: 1px solid var(--title);
    border-radius: 1rem;
    background-color: white; 
    width: fit-content;
    cursor: pointer;
    z-index: 999;
    text-decoration: none;
    /* Desktop Size Media */
    @media screen and (min-width: 600px) {
        position: fixed;
        top: 0.5rem;
        left: 5.5rem;
        padding: 0.2rem 0.5rem;
        border: 1px solid var(--title);
        border-radius: 1rem;
        /* background-color: var(--color-box-bg); */
        width: fit-content;
        cursor: pointer;
        z-index: 999;
        text-decoration: none;
    }
    p{
        color: var(--title);
        font-family: "ainslie-sans-extended", sans-serif;
        font-weight: 500;
        font-style: normal;
        font-size: 0.8rem;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            color: var(--title);
            font-family: "ainslie-sans-extended", sans-serif;
            font-weight: 500;
            font-style: normal;
            font-size: 0.8rem;
        }
    }
}
.div-back:hover{
    background-color: var(--title);

    /* Desktop Size Media */
    @media screen and (min-width: 600px) {
        background-color: var(--title);   
    }
    p{
        color: white;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            color: white;
        }
    }
}

.div-back-active{
    background-color: var(--title);
    /* Desktop Size Media */
    @media screen and (min-width: 600px) {
        background-color: var(--title);   
    }
    p{
        color: white;
    /* Desktop Size Media */
    @media screen and (min-width: 600px) {
        color: white;  
    }
    } 
}


.showMenu{
    height: 100vh;
    opacity: 1;
    background-color: white !important;
    z-index: 99;
    overflow: scroll;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            height: 100vh;
            background-color: white !important;
            z-index: 99;
            overflow: hidden;
        }

}


/* Section */
/* Section */

.section{
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
    /* background-color: aqua; */
    display: flex;
    flex-direction: column;
    margin-top: 0;
    margin-bottom: 0rem;
    z-index: 9;
    /* Desktop Size © */
    @media screen and (min-width: 600px) {
        width: 100%;
        max-width: 1600px;
        margin: 0 auto;
        /* background-color: aqua; */
        display: flex;
        flex-direction: column;
        margin-top: 0;
        margin-bottom: 3rem; 
    }

    /* Only applies to intro page */

    .intro, .project{
        background-color: transparent !important;
        height: auto;
        margin-top: 4rem !important;
        margin-bottom: 4rem;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            height: auto;
            margin-top: 3rem;
            margin-bottom: 8rem;
        }

        /* Text */
        h2{
            color: var(--title);
            width: 90%;
            max-width: 400px;
            margin: 0 auto;
            margin-top: 0rem;
            text-align: left;
            font-size: 1.2rem;
            line-height: 1.7rem;
            font-family: "droid-sans", sans-serif;
            font-weight: 400;
            font-style: normal;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto;
                margin-left: 0;
                margin-top: 0rem;
                text-align: left;
                font-size: 1.2rem;
                font-family: "droid-sans", sans-serif;
                font-weight: 400;
                font-style: normal;
            }
        }
        

        /* Only applies to project pages */

        h3{
            color: var(--title);
            font-family: "droid-sans", sans-serif;
            font-weight: 900;
            font-size: 2rem;
            margin-bottom: 1rem;
            width: 100%;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                width: 40%;
                font-family: "droid-sans", sans-serif;
                font-weight: 900;
                font-size: 1.8rem;
                line-height: 2.2rem;
                margin-bottom: 1rem;
            }
        }
        h4{
            color: var(--title);
            font-family: "droid-sans", sans-serif;
            font-weight: 900;
            font-size: 1.25rem;
            margin-top: 1.5rem;
            margin-bottom: 1rem;   
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                font-family: "droid-sans", sans-serif;
                font-weight: 900;
                font-size: 1.25rem;
                margin-top: 1.5rem;
                margin-bottom: 1rem;   
            }
        }
        span{
            color: var(--txt);
            font-size: 0.5rem;
            font-family: "droid-sans", sans-serif;
            font-weight: 400;
            margin-bottom: 1rem;  
            /* Desktop Size Media */ 
            @media screen and (min-width: 600px) {
                font-size: 0.5rem;
                font-family: "droid-sans", sans-serif;
                font-weight: 400;
                margin-bottom: 1rem;  
            }
        }
        .p-details{
            font-size: 0.7rem;
            line-height: 1.1rem;
            @media screen and (min-width: 600px) {
                font-size: 0.7rem;
                line-height: 1.1rem;
            }
        }
        p{  
            color: var(--txt);
            font-size: 1rem;
            font-family: "droid-sans", sans-serif;
            font-weight: 400;
            margin-bottom: 1rem;  
            /* Desktop Size Media */ 
            @media screen and (min-width: 600px) {
                font-size: 0.85rem;
                line-height: 1.25rem;
                font-family: "droid-sans", sans-serif;
                font-weight: 400;
                margin-bottom: 1rem;
            }
        }
        ul{
            display: flex;
            flex-direction: row;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                display: flex;
                flex-direction: row;
            }
            li{ 
                margin-right: 0.5rem;
                font-weight: 400;
                text-align: center;
                font-size: 0.65rem;
                font-family: "droid-sans", sans-serif;
                font-style: italic;
                color: white;
                background-color: var(--title);
                padding: 0.25rem 0.5rem;
                border-radius: 1rem;
                @media screen and (min-width: 600px) {
                }  
            }
                @media screen and (min-width: 600px) {
                    margin-right: 1rem;
                    font-family: "droid-sans", sans-serif;
                    font-weight: 400;
                }
            }
        }
    }


    /* Horizontal Div Container */

    .div-horizontal{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-bottom: 0rem !important;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
    }

    /* Vertical Div Container */

    .div-vertical{
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
        }
    }
    
    /* General Div Container for Image Rows - Either one or two*/
    .div_content_row{
        width: 100%;
        height: auto;
        margin: 0 auto;
        height: auto;
        margin-bottom: 4rem;
        overflow: hidden;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            width: 1200px;
            height: auto;
            margin: 0 auto;
            /* background-color: rgb(255, 197, 155); */
            height: auto;
            margin-bottom: 3.5rem !important;
            overflow: hidden;
        }
        /* Link Container - One Element */
        .a_img_row{
            justify-content: right;
            align-items: end;
            display: flex;
            flex-direction: column;
            text-decoration: none;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                justify-content: right;
                align-items: end;
                display: flex;
                flex-direction: column;
                text-decoration: none;
            }
            h4{
                color:var(--title);
                text-align: center;
                margin: 0 auto;
                font-family: "droid-sans", sans-serif;
                font-weight: 500;
                font-size: 1.2rem;
                @media screen and (min-width: 600px) {
                    font-size: 1.1rem;
                }
            }
        }
            .h3_link{
                color: var(--title);
                width: 100% !important;
                margin: 0 auto;
                margin-bottom: 0.75rem;
                text-align: left;
                height: fit-content;
                font-family: "droid-sans", sans-serif;
                font-weight: 400;
                font-style: normal;
                background-color: transparent;
                align-content: center;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 70% !important;
                    text-align: left;
                    height: 40px;
                    font-family: "droid-sans", sans-serif;
                    font-weight: 400;
                    font-style: normal;
                    align-content: center;
                    justify-content: center;
                    font-size: 0.8rem;
                    margin-bottom: 0.5rem;
                }
            }
            .h3_horizontal{
                color: var(--title);
                width: 100%;
                max-width: 400px;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 1200px;
                    max-width: 1200px;
                    width: fit-content;
                    height: auto;
                    padding: 0.5rem 0.8rem;
                    margin: 0 auto;
                    margin-bottom: 0.2rem;
                }
            }
            .h3_vertical{
                color: var(--title);
                width: 100%;
                max-width: 400px;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 550px;
                    max-width: 1400px;
                    width: fit-content;
                    height: auto;
                    padding: 0.5rem 0.8rem;
                    margin: 0 auto;
                    margin-bottom: 0.2rem;
                }
            }
            .h3_center{
                color: var(--title);
                text-align: center;
                @media screen and (min-width: 600px) {
                    text-align: center;
                }
            }
            .skill{
                margin: 0 auto;
                margin-bottom: 1rem;
                text-align: center;
                font-size: 0.65rem;
                font-family: "droid-sans", sans-serif;
                font-style: italic;
                color: white;
                background-color: var(--title);
                padding: 0.25rem 0.5rem;
                border-radius: 1rem;
                @media screen and (min-width: 600px) {
                }  
            }
            .caption{
                color: var(--txt);
                margin: 0 auto;
                margin-bottom: 1rem;
                text-align: center;
                font-size: 0.65rem;
                font-family: "droid-sans", sans-serif;
                font-style: italic;
                background-color: transparent;
                padding: 0.25rem 0.5rem;
                border-radius: 1rem;
                @media screen and (min-width: 600px) {
                }  
            }
            .a-img{
                text-decoration: none;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    text-decoration: none;
                }
                img{
                    margin-bottom: 1rem;
                    overflow: hidden;
                    /* Desktop Size Media */
                    @media screen and (min-width: 600px) {
                        margin-bottom: 1rem;
                        overflow: hidden;
                 }
            }

        }

        /* Anchor Horizontal size */
        .a-horizontal{
            width: 100%;
            max-width: 400px;
            height: auto;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                width: 1200px;
                max-width: 1200px;
                height: auto;
            }
            div{
                width: 100%;
                max-width: 400px;
                height: auto;
                /* Desktop Size © */
                @media screen and (min-width: 600px) {
                    width: 1200px;
                    max-width: 1200px;
                    height: auto;
                }
            }
            img{
                width: 100%;
                max-width: 400px;
                height: auto;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 1200px;
                    max-width: 1200px;
                    height: auto;
                }
            }
            iframe{
                width: 100%;
                max-width: 400px;
                height: 350px;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 100%;
                    max-width: 1200px;
                    height: 700px;
                }
            }
        }


        /* Anchor Vertical size */
        .a-vertical{
            width: 100%;
            max-width: 400px;
            height: auto;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 4rem;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                width: fit-content;
                height: auto;
                display: flex;
                flex-direction: column;
                justify-content: flex-end;
                max-width: 1400px;
                margin-bottom: 0;
            }
            div{
                width: 100%;
                max-width: 400px;
                height: auto;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 550px;
                    max-width: 1200px;
                    height: auto;
                }
            }
            img{
                width: 100%;
                max-width: 400px;
                height: auto;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 550px;
                    max-width: 1200px;
                    height: auto;
                }
            } 
            .a-video{
                width: 100%;
                
                height: auto;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 550px; 
                    max-width: 1200px; 
                    height: auto; 
                    background-color: transparent;
                }
            }

        }

        /* Anchor Vertical size */
        .a-vertical-three{
            width: 100%;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                width: 32%;
            }
            div{

                /* Desktop Size Media */
                @media screen and (min-width: 600px) {

                }
            }
            img{
                width: 100%;
                max-width: 400px;
                height: auto;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 100%;
                    max-width: 1200px;
                    height: auto;
                }
            } 
            .a-video{
                width: 100%;
                
                height: auto;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: 550px; 
                    max-width: 1200px; 
                    height: auto; 
                    background-color: transparent;
                }
            }

        }

    }

    /* .a_ux only applies to ux cards */
    .a_ux{
        @media screen and (min-width: 600px) {
        } 
        .div_profile{
            width: 150px !important;
            height: 150px !important;
            border-radius: 50%;
            background-color: #262626;
            margin-bottom: 1rem;
            display: flex;
            justify-content: center;
            align-items: center;
            @media screen and (min-width: 600px) {
                width: 150px !important;
                height: 150px !important;
                border-radius: 50%;
                background-color: #262626;
                margin-bottom: 1rem;
                display: flex;
                justify-content: center;
                align-items: center;
            } 
            img{
                width: 120px;
                height: 120px;
            }
        }
        h4{
            color: var(--title);
            margin-bottom: 1rem !important;
        }
        div{

            @media screen and (min-width: 600px) {
                width: 60% !important;
            } 
            ul{
                font-family: "droid-sans", sans-serif;
                @media screen and (min-width: 600px) {
                    font-family: "droid-sans", sans-serif;
                    font-size: 0.8rem;
                    width: fit-content;
                    margin-bottom: 2rem;
                } 
                li{
                @media screen and (min-width: 600px) {
                } 
                }
            }
            p{  
                color: var(--txt);
                padding-top: 1rem !important;
                font-family: "droid-sans", sans-serif;
                @media screen and (min-width: 600px) {
                    margin-left: 0 !important; 
                    padding-left: 0 !important;
                    padding-top: 1rem !important;
                    text-align: left !important;
                    width: fit-content !important;
                    font-family: "droid-sans", sans-serif;
                    font-size: 0.8rem;
                    padding: 0 !important;
                }   
            }
        }
    }

    .h5-row{
        color: var(--title);
        font-family: "droid-sans", sans-serif;
        font-weight: 600;
        margin: 0 auto;
        font-size: 1.6rem;
        width: fit-content;
        max-width: 1400px;
        height: auto;
        padding: 0.5rem 0.8rem;
        margin-bottom: 0.5rem;
        @media screen and (min-width: 600px) {
        font-size: 1.4rem;
        }   
    }
    .title_left{
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
        @media screen and (min-width: 600px) {
            margin-left: 0 !important;
            padding-left: 0 !important;
            text-align: left !important;
        }   
    }
    .p_left{
        color: var(--txt);
        margin-left: 0 !important;
        padding-left: 0 !important;
        @media screen and (min-width: 600px) {
            margin-left: 0 !important;
            padding-left: 0 !important;
        }   
    }

    /* This Section is for the buttons inside of any section */
    .click{
         padding: 0.4rem 0.6rem;
                border: 1px solid var(--txt);
                border-radius: 1rem;
                width: fit-content;
                cursor: pointer;
                text-decoration: none;
                background-color: white;
                color: var(--title);
                font-family: "droid-sans", sans-serif;
                font-weight: 400;
                margin: 0 auto;
                @media screen and (min-width: 600px) {
                    padding: 0.2rem 0.5rem;
                    border: 1px solid var(--title);
                    border-radius: 1rem;
                    /* background-color: var(--color-box-bg); */
                    width: fit-content;
                    cursor: pointer;
                    z-index: 999;
                    text-decoration: none;
                    font-size: 0.8rem;
                }
            }
            .click:hover{
                background-color: var(--title);
                color: white;  
            } 


/*-- Footer --*/
/*-- Footer --*/

.footer{
    /* background-color: red; */
    width: 100%;
    margin-top: 0;
    margin-bottom: 2rem;
    height: auto;
    /* Desktop Size Media */
    @media screen and (min-width: 600px) {
        width: 100%;
        margin-top: 0;
        margin-bottom: 2rem;
        height: auto;   
    }
    div{
        width: 90%;
        max-width: 400px;
        margin: 0 auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            flex-direction: row;
            justify-content: center;
            align-items: center;
        }
        p{  
            color: var(--txt);
            font-family: "ainslie-sans-extended", sans-serif;
            font-weight: 500;
            font-style: normal;
            margin-bottom: 1rem;
            font-size: 0.8rem;
            text-align: center;
            /* Desktop Size Media */
            @media screen and (min-width: 600px) {
                font-family: "ainslie-sans-extended", sans-serif;
                font-weight: 500;
                font-style: normal;
            }
        }
        ul{
        /* background-color: aqua; */
        display: flex;
        flex-direction: row;
        align-items: center;
        /* Desktop Size Media */
        @media screen and (min-width: 600px) {
            display: flex;
            flex-direction: row;
            align-items: center;
        }
            li{     
                margin-right: 1rem;    
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    margin-right: 1rem;    
                } 
                a{
                width: auto;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    width: auto;
                }
                
                img{             
                    }
                }
            }
            li:last-child{
                margin-right: 0;
                /* Desktop Size Media */
                @media screen and (min-width: 600px) {
                    margin-right: 0;
                }
            }
        }
    }
}