/* Reset some default styles */
body, ul {
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    background: url('background.jpg') no-repeat center center fixed;
    background-size: cover;
}

.glass-navbar {

    width: 100%;
    top: 0;
    left: 0;
    background: rgba(255, 255, 255, 0.3); /* Semi-transparent background */
    backdrop-filter: blur(10px); /* Blur effect */
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.glass-navbar ul {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 10px 0;
}

.glass-navbar ul li {
    margin: 0 20px;
     list-style-type: none;
}

.glass-navbar ul li a {
    text-decoration: none;
    color: #000066;
    font-size: 18px;
    padding: 10px 20px;
    transition: background 0.3s, color 0.3s;
}

.glass-navbar ul li a:hover {
    background: rgb(97 118 166 / 21%);
    color: #000;
    border-radius: 5px;
}