/*GLOBALS [START]*/
*{
    margin: 0; padding: 0;
    font-family: 'Sono-Variable';
}
html{
    background-color: var(--main-bg-color);
    color: var(--main-text-color);
}
/*GLOBALS [END]*/

/*HEADER [START]*/
#navbar{
    width: 100%; height: 74px;
    border-bottom: solid;
    border-color: var(--second-text-color);
    border-width: 2px;
    background-color: var(--second-bg-color);
}
    #navbar ul{
        display: flex;
        list-style-type: none;
    }
        .navBarButton{
            display: inline-block;
            text-decoration: none;
            color: var(--main-text-color);
            font-size: 35px;
        }
            .navBarButton .menuBurger,
            .navBarButton.active .menuBurger,
            .navBarButton .cross,
            .navBarButton.active .cross{
                transition: transform 0.5s, opacity 0.5s;
                cursor: pointer;
            }
            .navBarButton .menuBurger,
            .navBarButton.active .cross{
                opacity: 100%;
                transition-timing-function: cubic-bezier(1, 0.18, 0.57, 1.32);
            }
            .navBarButton.active .menuBurger,
            .navBarButton .cross{
                opacity: 0%;
                transition-timing-function: cubic-bezier(0.43, -0.32, 0, 0.82);
            }

            .navBarButton .menuBurger{
                transform: translateY(0px);
            }
            .navBarButton.active .menuBurger{
                transform: translateY(-50px);
            }
            .navBarButton .cross{
                position: fixed;
                transform: translateX(2px);
                opacity: 0%;
            }
            .navBarButton.active .cross{
                transform: translateX(-58px);
            }
            
            .navBarButton i{
                display: inline-block;
                padding: 19px; padding-left: 0px; padding-right: 23px;
                height: 35px;
            }
    #titleDiv{
        width: 100%;
        display: flex;
        justify-content: center;
    }
        #title{
            margin-top: 17px;
        }
/*HEADER [END]*/

/*MAIN [START]*/
#burgerMenuBack{
    display: none;
    background-color: rgb(0 0 0 / 0%);
    width: 100%;
    height: -webkit-fill-available;
    position: absolute;
}
#burgerMenuBack.active{
    background-color: rgb(0 0 0 / 50%);
    display: flex;
}
    #burgerMenu{
        position: fixed; right: 0;
        z-index: 1;
        background-color: var(--main-bg-color);
        width: 75%; max-width: 450px;
        height: 92%;/*TROUVER UNE SOLUTION CROSS BROWSERS*/
        border-left: solid 2px var(--second-text-color);
        transform: translateX(calc(100% + 2px));
        transition: 0.5s;
        transition-timing-function: cubic-bezier(0.48, 0.18, 0.93, 0.15);
    }
    #burgerMenuBack.active #burgerMenu{
        transition: 0.5s;
        transform: translateX(0px);
        transition-timing-function: cubic-bezier(0.07, 0.85, 0.52, 0.82);
    }
        #burgerMenu ul{
            list-style: none;
            margin-top: 45px;
            height: 80vh;
        }
            #burgerMenu li{
                display: flex;
                justify-content: center;
                margin: 35px 0;
            }
                #burgerMenu li.bottom{
                    width: 100%;
                    position: fixed;
                    bottom: 0;
                    margin: 20px 0px;
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                }
                #burgerMenu li.bottom #brightnessButtonSideToUsername{
                    margin-bottom: 20px;
                }
                #burgerMenu li.bottom div{
                    display: flex;
                    flex-direction: column;
                    align-items: center;
                    width: 100%;
                }
                #burgerMenu li.bottom div a{
                    margin: 10px 0px;
                }
                #burgerMenu li.bottom div a#username,
                #burgerMenu li.bottom div a#usernameClose{
                    font-weight: 550;
                    display: none;
                }
                #burgerMenu li.bottom div a#username.profileCardActive,
                #burgerMenu li.bottom div a#usernameClose.profileCardActive{
                    display: unset;
                }
                #burgerMenu li.bottom div a#username.profileCardActive:hover,
                #burgerMenu li.bottom div a#usernameClose.profileCardActive:hover{
                    cursor: pointer;
                    font-weight: 400;
                }
                #burgerMenu li a{
                    color: var(--main-text-color);
                    text-decoration: none;
                    padding: 12px;
                    font-size: 22px;
                    transition: font-weight 1s, color 1s;
                }
                    #burgerMenu li a:hover{
                        font-weight: 600;
                        transition: none;
                        transition: color 1s;
                    }
                    #burgerMenu li a.active{
                        color: var(--second-text-color);
                    }
                    #burgerMenu li a:active{
                        color: var(--second-text-color);
                        transition: none;
                    }

#h1Div{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 25px;
}
    h1{
        font-weight: 450;
        font-size: 42px;
    }
#h2Div{
    width: max-content;
    display: flex;
    justify-content: flex-start;
    margin-top: 25px;
    padding-left: 35px;
}
    h2{
        font-weight: 350;
        font-size: 36px;
    }
#h1Separator{
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
    #h1Separator div{
        width: 30%; height: 1px;
        background-color: var(--second-text-color);
    }
#h2Separator{
    display: flex;
    justify-content: flex-start;
    margin-top: 20px;
    padding-left: 80px;
    padding-left: min(10%, 120px);
}
    #h2Separator div{
        width: 15%;
        min-width: 120px; max-width: 250px;
        height: 1px;
        background-color: var(--second-text-color);
    }

#homeButtons{
    width: 100%; margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
    #homeButtonsSeparator{
        height: 50px;
    }

.normalButton{
    display: flex; align-items: center;
    text-decoration: none;
    color: var(--main-text-color);
    background-color: var(--second-bg-color);
    border: solid 2px var(--second-text-color);
    font-size: 22px;
    padding: 13px;
    padding-left: 19px; padding-right: 17px;
    margin: 4px;
    transition: 1s;
    border-radius:  5px;
}
    .normalButton:hover{
        font-weight: 600;
        transition: none;
        transition: background-color 1s ;
    }
    .normalButton:active{
        background-color: var(--second-text-color);
        border-color: var(--second-bg-color);
        color: var(--second-bg-color);
        transition: none;
    }
    .normalButton i{
        padding-top: 4px;
        padding-right: 17px;
    }

#textZoneContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
}
    #textZone{
        width: 80%;
        font-size: 21px;
        text-indent: 45px;
        text-align: justify;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    #creditsZone{
        margin-top: 30px;
        font-size: 16px;
        text-align: justify;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

#loginFormContainer{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 45px;
}
    #loginForm{
        width: 90%;
        max-width: 600px;
        border: solid 3px var(--second-text-color);
        border-radius: 5px;
        background-color: var(--second-bg-color);
        padding-bottom: 20px;
    }
        #inputsContainer{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 20px 0;
            font-size: 22px;
        }
            #inputsContainer a,
            #inputsContainer input{
                margin: 5px 0;
            }
            #inputsContainer input{
                width: 80%;
                height: 20px;
                padding: 5px;
                font-size: 18px;
                font-weight: 600;
                background-color: var(--main-bg-color);
                border: solid 3px var(--second-text-color);
                border-radius: 6px;
                color: var(--main-text-color);
                caret-color: var(--main-text-color);
                caret-shape: underscore;
            }
                #inputsContainer input:focus-visible{
                    outline: none;
                }
                #inputsContainer input:-webkit-autofill,
                #inputsContainer input:-webkit-autofill:hover, 
                #inputsContainer input:-webkit-autofill:focus, 
                #inputsContainer input:-webkit-autofill:active{
                    -webkit-text-fill-color: var(--main-text-color) !important;
                    transition: background-color 50000s ease-in-out 0s;
                    background-color: var(--main-bg-color);
                    caret-color: var(--main-text-color);

                    /*ne fonctionne pas..*/
                    font-family: 'Sono-Variable';
                    font-weight: 600;
                }

        #buttonsContainer{
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 20px;
        }
            #buttonsContainer a{
                display: flex; align-items: center;
                text-decoration: none;
                color: var(--main-text-color);
                background-color: var(--second-bg-color);
                border: solid 2px var(--second-text-color);
                font-size: 19px;
                padding: 11px;
                padding-left: 17px; padding-right: 15px;
                margin: 4px;
                transition: 1s;
                border-radius:  4px;
            }
                #buttonsContainer a:hover{
                    font-weight: 600;
                    transition: none;
                    transition: background-color 1s ;
                    cursor: pointer;
                }
                #buttonsContainer a:active{
                    background-color: var(--second-text-color);
                    border-color: var(--second-bg-color);
                    color: var(--second-bg-color);
                    transition: none;
                }
                #buttonsContainer a i{
                    padding-top: 4px;
                    padding-right: 17px;
                }



/*FILE EXPLORER [START]*/

#rightClickMenu{
    position: absolute;
    padding: 8px 8px 3px 8px;
    background-color: var(--second-bg-color);
    border: solid 2px var(--second-text-color);
    border-radius: 10px;
    border-top-left-radius: 0;
    box-shadow: 0px 0px 8px 8px var(--second-bg-color);
    flex-direction: column;
    align-items: flex-start;
    display: none;
}
    #rightClickMenu a.contextMenuButton{
        display: flex;
        margin: 3px;
    }
        #rightClickMenu a:hover{
            cursor: pointer;
            color: var(--second-text-color);
        }
    #rightClickMenu div{
        margin-left: 8px;
    }
    #rightClickMenu span{
        display: flex;
        width: 100%;
        font-size: 19px;
        justify-content: center;
        margin: 10px 0 10px 0;
        color: var(--second-text-color);
    }

    #sharedMenuCheckbox{
        margin-left: 0;
        width: 20px; height: 20px;
        background-color: var(--main-bg-color);
        border-radius: 5px;
        border: solid 2px var(--main-text-color);
    }
        #sharedMenuCheckbox.checkBoxActive{
            background-color: var(--second-text-color);
        }

        /*#sharedMenuOptions{

        }*/
            #sharedMenuOptions a{
                display: flex;
                margin-top: 5px;
                margin-bottom: 5px;
            }
                #sharedMenuOptions a.disabled *{
                    color: gray;
                    cursor: not-allowed;
                }
                #sharedMenuOptions a:hover{
                    color: var(--second-text-color);
                }

#fileExplorerContainer{
    width: 100%;
    display: flex; flex-direction: column; align-items: center;
    margin-top: 50px;
}
    #fileExplorer{
        width: 90%;
        border: solid 3px var(--second-text-color);
        border-radius: 5px;
        font-size: 22px;

        /*Propriétés à revoir ⬇️*/
        overflow: hidden;

        background-color: var(--second-bg-color);
    }
        #aheadFileExplorer{
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        }
            #aheadFileExplorer #buttonSubDiv{
                display: flex;
            }
            .aheadFileExplorerButton{
                display: flex; align-items: center;
                text-decoration: none;
                color: var(--main-text-color);
                background-color: var(--main-bg-color);
                font-size: 22px;
                padding-left: 19px; padding-right: 2px;
                padding-top: 14px; padding-bottom: 12px;
                transition: background-color 1s, color 1s;
            }
                .aheadFileExplorerButton:hover{
                    background-color: var(--second-bg-color);
                    transition: none;
                    transition: color 1s;
                }
                .aheadFileExplorerButton:active{
                    color: var(--second-text-color);
                    transition: none;
                }
                .aheadFileExplorerButton i{
                    padding-top: 4px;
                    padding-right: 17px;
                }
                    .aheadFileExplorerButton.border-bottom{
                        border-bottom: solid 3px var(--second-text-color);
                    }
                    .aheadFileExplorerButton.border-right{
                        border-right: solid 3px var(--second-text-color);
                        border-bottom-right-radius: 5px;
                    }
                    .aheadFileExplorerButton.border-left{
                        border-left: solid 3px var(--second-text-color);
                        border-bottom-left-radius: 5px;
                    }
        
        #driveContainerContainer{
            display: flex;
            justify-content: center;
            margin: 10px 0;
        }
            #driveContainer{
                width: 95%;
                display: grid;
                border: solid 2px var(--second-text-color);
                border-radius: 5px;
                overflow-x: hidden;
                overflow-y: auto;
                background-color: var(--main-bg-color);
                max-height: 64vh;
            }
                /* width */
                #driveContainer::-webkit-scrollbar{
                    width: 8px;
                }
                #driveContainer::-webkit-scrollbar-track {
                    background: var(--second-bg-color); 
                }/*Rail*/
                
                
                #driveContainer::-webkit-scrollbar-thumb {
                    background: var(--second-text-color);
                    border-top-left-radius: 3px;
                    border-bottom-left-radius: 3px;
                }/*Barre*/
                #driveContainer::-webkit-scrollbar-thumb:hover {
                    background: var(--main-text-color); 
                }
            
                .filesTable{
                    display: grid;
                    align-items: center;
                    font-size: 20px;
                    grid-template-columns: 35px 1fr 100px 10px;
                }
                    .gridFilesTableDiv{
                        overflow: auto;
                    }
                        /* width */
                        .gridFilesTableDiv::-webkit-scrollbar{
                            height: 3px;
                        }
                        .gridFilesTableDiv::-webkit-scrollbar-track {
                            background: var(--second-bg-color); 
                        }/*Rail*/
                        
                        
                        .gridFilesTableDiv::-webkit-scrollbar-thumb {
                            background: var(--second-text-color);
                            border-radius: 3px;
                        }/*Barre*/
                        .gridFilesTableDiv::-webkit-scrollbar-thumb:hover {
                            background: var(--main-text-color); 
                        }

                    .fileRow{
                        display: flex;
                        width: 100%;
                    }
                        /*.tableElements{
                            overflow: hidden;
                        }*/
                            .fileSizeContainer{
                                text-align: end;
                            }
                            
                            .aFileName,
                            .fileSize{
                                white-space: nowrap;
                            }
                            .fileSize{
                                color: var(--second-text-color);
                            }
                                .aFileName:hover{
                                    cursor: pointer;
                                    color: var(--second-text-color);
                                }
                            .filesTable .square{
                                padding: 3px;
                            }

                            #fileRenamFormTextInput{
                                width: calc(90% - 20px);
                                background-color: var(--second-bg-color);
                                color: var(--main-text-color);
                                border: solid 2px var(--second-text-color);
                                border-radius: 3px;
                                padding: 3px;
                                font-size: 20px;
                                font-weight: 450;
                            }
                                #fileRenamFormTextInput:focus-visible{
                                    outline: none;
                                }

                                /*.fileDateToolTip{
                                    
                                }*/
                                    .fileExplorerFileName{
                                        overflow: hidden;
                                    }


                #noneFile{
                    display: flex;
                    justify-content: center;
                }
                    #noneFile p{
                        font-size: 20px;
                        margin: 10px;
                    }

        
        #remainingSpace{
            font-size: 16px;
            margin: 12px;
        }
            #binLink{
                text-decoration: underline;
                color: var(--main-text-color);
            }
                /*#binLink:hover{
                    cursor: not-allowed;
                }*/

        #uploadFileProgress{
            position: fixed;
            bottom: 0;
            right: 0;
            background-color: var(--second-bg-color);
            border: solid 4px var(--second-text-color);
            border-right: 0;
            border-bottom: 0;
            border-top-left-radius: 8px;
            padding: 10px;
            width: min(70%, 450px);
        }

    /*ANCIEN VISIONNEUR D'IMAGES*/
    /*#imageViewer{
        position: fixed; z-index: 30;
        background-color: rgb(0 0 0 / 40%);
        width: 100%; height: 100%;
        top: 0; left: 0;
        backdrop-filter: blur(6px);
        display: none;
            justify-content: center;
            flex-direction: row;
            align-items: center;
    }
        #imageViewer img{
            max-width: 85%;
            max-height: 85%;
        }*/

    /*NOUVEAU VISIONNEUR D'IMAGES*/
    #imageViewerContainer{
        display: none;
        position: fixed;
        width: 100%;
        height: 100%;
        z-index: 100;
        top: 0;
        left: 0;
        justify-content: center;
        align-items: center;
        background-color: rgb(0 0 0 / 50%);
        backdrop-filter: blur(2px);
    }

    #imageViewer{
        position: relative;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);

        max-width: 80%;
        max-height: 80%;
        border: solid 5px var(--second-text-color);
        border-radius: 5px;
        
        background-size: 100%;
        background-repeat: no-repeat;
        background-position-x: center;
        background-position-y: center;
    }
        #imageViewer:hover{
            cursor: grab;
        }
          
        #imageViewerInterface{
            width: 100%;
            height: 100%;
            position: relative;
        }
          
          
        #imageViewer .interfaceButton{
            position: absolute;
            font-size: 22px;
            background-color: var(--main-bg-color);
            padding: 3px;
        }
            #imageViewer .interfaceButton:hover{
                cursor: pointer;
            }
          
        #imageViewer .top{
            top: 0;
            border-bottom: solid 5px var(--second-text-color);
        }
        #imageViewer .bottom{
            bottom: 0;
            border-top: solid 5px var(--second-text-color);
        }
        #imageViewer .left{
            left: 0;
            border-right: solid 5px var(--second-text-color);
        }
        #imageViewer .right{
            right: 0;
            border-left: solid 5px var(--second-text-color);
        }
        #imageViewer .top.left{
            border-bottom-right-radius: 5px;
        }
        #imageViewer .top.right{
            border-bottom-left-radius: 5px;    
        }
        #imageViewer .bottom.left{
            border-top-right-radius: 5px;
        }
        #imageViewer .bottom.right{
            border-top-left-radius: 5px;    
        }

/*FILE EXPLORER [END]*/
/*MAIN [END]*/

/*FOOTER [START]*/
/*FOOTER [END]*/


/*TEMP LOCATION*/
#profileCardContainer{
    position: fixed;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    transform: translateY(90vh);
    opacity: 0%;
    transition: none;
    transition: transform 1s, opacity 1s;
    transition-delay: 0s, 1s;
}
#profileCardContainer.profileCardActive{
    transform: translateY(0vh);
    opacity: 100%;
    transition: none;
    transition: transform 1s;
}
#profileCard{
    aspect-ratio: 315/440;
    /*width: 315px;*/
    width: 75%;
    overflow: hidden;
    color: var(--main-text-color);
    background-color: var(--second-bg-color);
    border: solid min(1vmin, 6px) var(--second-text-color);
    border-radius: min(2vmin, 15px);
    box-shadow: 0px 0px 1vmin 0px var(--second-text-color);
    transition: box-shadow 0.5s;
    position: absolute;
    z-index: 2;
}
    

    #profileCard:hover{
        box-shadow: 0px 0px 10px min(1vmin, 5px) var(--second-text-color);
        transition: box-shadow 0.5s;
    }

    #profileNameDiv h2{
        text-indent: min(2.4%, 8px);
        font-size: min(4vmin, 24px);
        font-weight: 550;
    }

    #imagesFrameContainer{
        width: 100%; height: 37%;
        display: flex; justify-content: center;
    }

        #imagesFrame{
            width: 90%;
            height: 100%;
            border-radius: min(1.1vmin, 5px);
            background-color: var(--second-text-color);
            display: flex;
                justify-content: center;
                align-items: center;
        }

            #profileBanner{
                /*aspect-ratio: 283.5/159.47;*/
                width: 96%;
                position: relative;
                z-index: 1;
            }

            #profilePicture,
            #profilePicture:hover{
                z-index: 3;
                position: absolute;
                aspect-ratio: 1/1;
                width: 30%;
                border-radius: 50%;
            }

            #profilePictureOverlay{
                z-index: 4;
                position: absolute;
                border-radius: 50%;
                aspect-ratio: 1/1;
                width: 30%;
                display: flex;
                align-items: center;
                justify-content: center;
                transition: 0.2s;
                overflow: hidden;
                opacity: 0;
            }

                #profilePictureOverlay:hover{
                    background-color: var(--image-overlay);
                    opacity: 1;
                }

            #profileBannerOverlay{
                z-index: 2;
                position: absolute;
                aspect-ratio: 283.5/159.47;
                width: 86%;
                background-color: rgba(0, 0, 0, 0);
                display: flex;
                align-items: flex-end;
                justify-content: space-between;
                transition: 0.2s;
                opacity: 0;
                border-radius: 2px;
            }

                #profileBannerEditDiv,
                #profileBannerTrashDiv,
                #profilePictureOverlayEditDiv,
                #profilePictureOverlayTrashDiv{
                    aspect-ratio: 1/1;
                    width: min(5.3vmin, 32px);
                    font-size: min(3vmin, 18px);
                    margin: 10px; border-radius: 50%;
                    background-color: var(--button-overlay);
                    opacity: 1;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    cursor: pointer;
                }

                    /*#profileBannerEditDiv,
                    #profileBannerTrashDiv{
                        cursor: not-allowed;
                    }*/

                #profilePictureOverlayEditDiv,
                #profilePictureOverlayTrashDiv{
                    margin: 0;
                }

                #profilePictureOverlayEditDiv{
                    border-radius: 50% 0 0 50%;
                }
                #profilePictureOverlayTrashDiv{
                    border-radius: 0 50% 50% 0;
                }

                    #profileBannerEditDiv:hover,
                    #profileBannerTrashDiv:hover,
                    #profilePictureOverlayEditDiv:hover,
                    #profilePictureOverlayTrashDiv:hover{
                        background-color: var(--button-hover-overlay);
                    }

                    #profileBannerOverlay:hover{
                        background-color: var(--image-overlay);
                        opacity: 1;
                    }

    #middleCard{
        width: 100%;
        margin-top: 52%;
        font-weight: 400;
        font-size: min(3vmin, 18px);
        position: absolute;
    }

        #profileInfosDiv,
        #profileThemeDiv{
            margin: 3% 5%;
        }

            .profileInfoDiv{
                display: flex;
            }

                #profileMail,
                #profileMail a,
                #profilePassword,
                #profilePassword a{
                    margin-left: 3%;
                    cursor: not-allowed;
                    font-size: min(2.4vmin, 16px);
                    color: var(--main-text-color);
                    text-decoration: none;
                    font-weight: 500;
                }

                #userMail{
                    overflow: hidden;
                }

        
        #profileThemeTitleDiv{
            display: flex;
        }
            #themeBrightnessSelector{
                width: 69%;
                display: flex;
                align-items: flex-end;
                justify-content: center;
            }
                #themeBrightnessSelector a{
                    color: var(--main-text-color);
                    text-decoration: none;
                    font-size: 1.3em;
                }
                    #brightnessIcon,
                    #brightnessIconSideToUsername,
                    #darknessIconSideToUsername{
                        display: none;
                    }
                        #brightnessIcon.iconThemeActive,
                        #brightnessIconSideToUsername.iconThemeActive,
                        #darknessIconSideToUsername.iconThemeActive{
                            display: unset;
                        }
                        #brightnessButtonSideToUsername.profileCardActive{
                            display: none;
                        }                        

        #themeSelector{
            width: 100%;
            display: grid;
            justify-content: space-around;
        }
            #themeColorSelector{
                display: none;
                width: min(3vmin, 19px);
                height: min(3vmin, 19px);
                margin-top: min(3vmin, 16px);
            }
                #themeColorSelector.active{
                    display: block;
                }


    #footerCard{
        position: absolute;
        bottom: 3%;
        width: 100%;
        display: flex;
        justify-content: space-evenly;
        flex-direction: row;
    }

        #footerCard a{
            text-decoration: none;
            color: var(--main-text-color);
            background-color: var(--main-bg-color);
            border: solid min(0.4vmin, 3px) var(--second-text-color);
            border-radius: min(1vmin, 8px);
            padding: min(0.9vmin, 5px);
            font-size: min(2.7vmin, 16px);
            transition: background-color 1s, font-weight 1s;
        }

            #footerCard a:hover{
                font-weight: 600;
                transition: none;
                transition: background-color 1s;
            }
            #footerCard a:active{
                background-color: var(--second-text-color);
                color: var(--main-bg-color);
                transition: none;
            }



@media (min-width: 600px) {
    #burgerMenu li.bottom{
        margin: 30px 0;
    }
    #burgerMenu li.bottom div{
        display: flex;
        flex-direction: row;
        justify-content: center;
        width: 100%;
    }
    #burgerMenu li.bottom div a{
        margin: 0px 22px;
    }
    
    #buttonsContainer{
        flex-direction: row-reverse;
        justify-content: space-evenly;
    }
}
@media (max-width :599px){
    #h2Div{
        width: 100%;
        justify-content: center;
        padding-left: 0;
        text-align: center;
    }
}