.logo-main
{
    display:inline-flex;
    border-style: solid;
    padding: 5px 10px;
    border-radius: 100px;
    position: fixed;
    top: 20px;
    left: 10px;
    border-width: 1px;
    padding-right: 15px;
    z-index: 100;
    background-color: rgb(29, 29, 29);
}
.logo-main button
{
    height: 45px;
    width: 45px;
    margin-right: 10px;
    border-radius: 50%;
    margin-top: 2px;
}
.logo-main button:hover
{
    transform: scale(1.05);
}
.logo-main p
{
    display: inline-block;
    color: rgb(228, 228, 228);
    font-weight: bold;
}

.top-menu
{
    display: inline-flex;
    position: fixed;
    top: 20px;
    right: 10px;
    border-style: solid;
    padding: 12px 20px 12px;
    border-radius: 100px;
    border-width: 1px;
    border-color: rgb(73, 73, 73);
    background-color: rgb(29, 29, 29);
    align-content: space-evenly;
    z-index: 99;
}
.top-menu a
{
    background-color: rgb(29, 29, 29);
    margin: 0 5px;
    padding: 0;
    color: white;
    transition: text-shadow 0.3s ease;
    text-decoration: none;
    font-weight: bold;

}

.top-menu a:hover
{
    color: rgb(0, 255, 68);
    text-shadow: 0 0 10px rgba(14, 163, 0, 0.9), 0 0 40px rgba(21, 255, 0, 0.8); /* Effetto luminoso */
}

.top-menu a.current-page
{
    text-decoration: underline;
}
.burg-menu a.current-page
{
    text-decoration: underline;
}
.burg-menu
{
    display: none;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 99;
}
.burg-menu label
{
    background-color: rgb(29, 29, 29);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border-width: 1px;
    transform: scale(1.05);
    cursor: pointer;
}
.burg-menu label:active
{
    transform: scale(0.90);
}
.burg-menu label img
{
    width: 50%;
    height: 50%;
    padding-left: 12px;
    padding-top: 12px;
}
.burg-menu input
{
    display: none;
}
.dropdown-menu
{
    display: none;
    position: absolute;
    top: 50px;
    right: 30px;
    background-color: rgb(29, 29, 29);
    width: 150px;
    z-index: 500;
    border-radius: 30%;
    border-top-right-radius: 10%;
}
.dropdown-menu a
{
    background-color: rgb(29, 29, 29);
    color: white;
    margin: 0;
    padding: 0;
    transition: text-shadow 0.3s ease;
    text-decoration: none;
    font-weight: bold;
}
.dropdown-menu a:hover
{
    color: rgb(0, 255, 68);
    text-shadow: 0 0 10px rgba(14, 163, 0, 0.9), 0 0 40px rgba(21, 255, 0, 0.8); /* Effetto luminoso */
}
.dropdown-menu ul
{
    padding: 8px 0px 8px 50px;
    margin: 5px;
}
.dropdown-menu li
{
    list-style-type: none;
    margin-top: 5px;
    margin-bottom: 5px;
}


.burg-menu .check-menu:checked + label + .dropdown-menu 
{
    display: block;
}


.central-menu
{
    position: sticky;
    top: 20px;
    border-style: solid;
    border-radius: 100px;
    padding: 20px 20px 20px;
    border-width: 1px;
    z-index: 98;
    background-color: rgb(29, 29, 29);
    border-color: rgb(73, 73, 73);
}
.central-menu button
{
    border-radius: 15px;
    border-width: 1px;
    padding: 8px 16px 8px;
    background-color: rgb(29, 29, 29);
    color: white;
    border-color: rgb(73, 73, 73);
    font-weight: bold;
}
.central-menu button:hover
{
    transform: scale(0.92);
}









@media (max-width: 820px)
{
    .central-menu
    {
        position: relative;
    }
}

@media (max-width: 550px)
{
    .top-menu
    {
        display: none;
    }
    .burg-menu
    {
        display: inline-flex;
    }
}