body {
    background-image: url("../Sources/bg-img.jpg");
}

.sticky-top {
    justify-content: space-between;
    display: flex;
    flex-wrap: wrap;
    background-color: black;
    top: 0;
    z-index: 1000;
}

.sticky-top h1 {
    padding: 10px;
    flex: 1;
    font-weight: 700;
    font-size: 26px;
    color: white;
    max-width: fit-content;
    border-radius: 8px;
}
.sticky-top nav {
    display: flex;
    gap: 100px;
    align-items: center;
}

.sticky-top a {
    text-decoration: none;
    color: white;
    padding: 10px;
}

.sticky-top a:hover {
    background-color: white;
    color: black;
    font-weight: 900;
    border-radius: 15px;
    font-size: 18px;
}
#toggle-btn{
    display: none;
    position: absolute;
    right: 10px;
    top: 10px;
    height: fit-content;
    font-size: 30px;    
    cursor:context-menu;
    padding: 5px;
    border-radius: 5px;
    border: 2px solid black;
    background-color: white;
}
#dropdown-div {
    display: none; 
    position: absolute;
    border: 1px solid #ccc;
    border-radius: 4px;
    right: 10px;
    top: 0;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    height: 25px;
    z-index: 1000;
}
#dropdown-div a {
    background-color: white;
    display: block; 
    padding: 10px;
    text-decoration: none;
    color: black;
    border-bottom: 1px solid #f0f0f0;
}

#dropdown-div a:last-child {
    border-bottom: none; 
}

#dropdown-div a:hover {
    background-color:rgb(88, 88, 250); 
    border: 1px solid black;
    color: white;
    font-weight: 500;
}


/*Media Queries*/
@media only screen and (max-width: 550px){
    .sticky-top{
        width: 100%;
    }
    .sticky-top h1{
        font-size: 16px;
        font-weight: 900;
    }
    .sticky-top nav{
        display: none;
    }
    #toggle-btn{
        display: block;
        font-size: 24px;
    }
}

@media only screen and (min-width:551px) and (max-width: 697px) {
    .sticky-top{
        justify-content: center;
        width: 100%;
    }
    .sticky-top h1{
        font-size: 24px;
        font-weight: 900;
    }
    .sticky-top nav{
        display: none;
    }
    #toggle-btn{
        display: block;
        font-size: 24px;
    } 
}