#titleBar {
    display: none;
}
#fullscreenToggle {
    display: none;
}

.menubutton {
    width: 50px;
    height: 50px;
    border: none;
    background-color: rgba(228, 9, 9, 0);
    margin: 2%;
    display: flex;
    pointer-events: auto;
    z-index: 5;
    

}
.mobilemenu {
    display: none;
    flex-direction: column;

}
.menuBody {
        pointer-events: auto;
    z-index: 1;
    display: none;
    transition: all 0.2s;
    width: 100%;
    height: 100%;
    transform: translate(100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px); /* Safari support */
    overflow: auto;

}
.menuBody.enabled {
    transform: translate(0%);
    background-color: rgba(0, 0, 0, 0.377);

    border-radius: 12px;
    
}
.buttoncontainerM {
    padding-left: 10%;
    padding-right: 10%;
    padding-top: 10px;
    margin: 10px;
    z-index: 1;
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap:10%;
    background-color: none;
}
#listcollectionulM {
    margin-top: 30px;
    z-index: 1;
    pointer-events: auto;
    overflow: auto;

    display: flex;
    flex-direction: column;
}

#listcollectionulM li {
    width: 100%;
    position: relative;
    font-size: 120%;
    gap: 10px;
    display: flex;
    align-items: center;
    color: rgb(230, 230, 230);
    filter: invert(15%);
    padding: 1%;
    padding-left: 3%;
    transition: all 0.3s;
}
.logoContainer {
	width:70%;
  top:0;
  margin: 15px;
	left:0;
	position: absolute;
	
	z-index:10000;
}
.logo {
	z-index:10000;
	position: absolute;
	top:0;
	left:0;
	width:7%;
	opacity:0.5;
  
}
#listcollectionulM li.active {
    filter: invert(0%);
    background-color: rgba(95, 95, 95, 0.336);
}

#listcollectionulM img {
    height: calc(1lh + 10px);
    filter: invert(100%);
}
.buttoncontainerM button {
    color: white;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    gap:5px;
    filter: invert(0.3);
}

.buttoncontainerM button.active {
    filter: invert(0);
}

.menubutton .icon.off {
    height: 100%;
    display: block;
}
.menubutton .icon.on {
    height: 100%;
    display: none;
}

.menubutton.enabled .icon.off {
    display: none;
}
.menubutton.enabled .icon.on {
    display: block;
}

#infoContainerMobile {
    width: 100%;
    padding: 4%;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

#projectNameInfo {
    font-size: 30px;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bolder;
    margin-bottom: 10px;
}

.InfoMenu {
    
    font-size: 18px;
    display: flex;
    width: 100%;
    color: white;

    word-wrap: break-word;
    width: 100%;
    
}
.contentInfo {
    width: 60%;
}
.InfoMenutitle {
    width: 40%;
    position: relative;
    display: block;
    color: rgb(230, 230, 230);
}

@media only screen 
and (max-device-width: 1000px)
{ 
    .mobilemenu {
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: 1;
        pointer-events: none;
         display: flex;
    }
    .menuBody {
        display: block;
    }

    .logoContainer {
        width:100%;
        top:90%;
        height: fit-content;
        margin: 15px;
        left:0;
        position: absolute;
        display: block;
        
        z-index:10000;
    }
    .logo {
        z-index:10000;
        position: absolute;
        top:0;
        bottom: 0;
        left:0;
        width:10%;
        opacity:0.5;
    
    }

}
