.navbar {
    background-color: #333;
    overflow: hidden;
    margin: 0;
    padding: 0;
    border-radius: 50px;
    border-color: white;
    border: grey solid 0.2px;
    opacity: 1;
}

body {
    background-color: #333;  
}

.navbar:hover {
    background-color: #333;
    color: black;
    border-radius: 50px;
    box-shadow: 0 0 10px white;
    transition: all 0.2s linear;
}
.navbar a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    position: relative;
    top: 50%;
    left: 425px;
}

.navbar a:hover {
    background-color: #ddd;
    color: black;
    border-radius: 50px;
    box-shadow: 0 0 20px grey;
    transition: all 0.3s ease;
}

.navbar a.active {
    background-color: #4CAF50;
    color: white;
}

.navbar a.text {
    font-weight: bold;
    bottom: 10px;
    font-family: Inter;
    font-size: 15px;
}


