body, a,  p{
    text-decoration: none;
    padding: 0%;
    margin: 0%;
}

.logo{
    max-width: 100px;
    background-color: rgb(0, 0, 0);
}

#mainNav{
    position: sticky;
    top: 0px;
    z-index: 1000;
    background-color: rgba(0, 0, 0, 0.096);
     backdrop-filter: blur(10px);
     color: white;
    -webkit-text-stroke: 1px rgb(255, 255, 255);
}

.mainNav{
    display: flex;
    gap: 20px;
    justify-content: space-between;
    padding-left: 20px;
    padding-right: 20px;
}

.mainNav a{
    color: rgb(255, 249, 249);
    font-family: "Source Sans 3", sans-serif;
    font-weight: 500;
    font-size: 30px;   
}

.mainSubNav{
    display: flex;
    gap: 20px;
}

.navItemT1{
    display: block;
}
.navItemT2{
    display: none;
}

.navItemT1:hover ,.navItemT2> summary:hover ,.navItemT2 > ul> li> a:hover, .mainHomeBtn > a:hover{
    
     text-shadow:0 0 10px rgb(0, 0, 0);
     transform: scale(1.1);
}

@media (max-width: 797px){
    .logo{
        max-width: 50px;
    }
    
    .mainHomeBtn > a{
        font-weight: 500;
        font-size: 20px;
    }
    .mainSubNav > a{
        font-weight: 500;
        font-size: 20px;
    }
    .navItemT1{
        display: none;
    }
    .navItemT2{
        display:block;
        width: auto;
        height: auto;
        font-weight: 500;
        font-size: 18px;
        cursor: pointer;
    }
    .navItemT2 > ul > li > a{
        font-size: medium;
    }
    .navItemT2 > ul{
        list-style:square;
    } 

}
