@import url('https://fonts.googleapis.com/css2?family=Allerta+Stencil&display=swap');

.navbar {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 16px;
    text-align: right;
    border-radius: 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: sticky;
    z-index: 9999999999999999999;
    top: 0;
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: row;
    font-family: 'Allerta Stencil', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    transition: margin 0.2s cubic-bezier(0.8, 0, 0.2, 1);
}

.navbar.scrolled {
    position: fixed;
    width: -webkit-fill-available;
    margin: 10px;
    border-radius: 10px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 0px 4px 0px, rgba(0, 0, 0, 0.06) 0px 5px 20px 5px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    backdrop-filter: saturate(1.5) blur(12px);
}

.navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    justify-content: space-around;
    display: flex;
    align-items: center;
}

.navbar .links {
    padding: 0px 10px;
    width: -webkit-fill-available;
}

.navbar li {
    display: inline-block;
}

.navbar a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 5px;
    transition: all 0.1s ease-in;
    letter-spacing: 0.8px;
}

.navbar a:hover {
    text-decoration: none;
    text-shadow: 0 0 5px #fff, 0 0 15px #fff, 0 0 20px #fff, 0 0 40px #fff, 0 0 25px #fff, 0 0 1px #fff, 0 0 2px #fff;
}

.navbar a.active {
    font-weight: bold;
}

.navbar-image {
    height: 25px;
}
