
body {
    --navbar-height: 60px;
}

#navbar {
    width: 100vw;
    height: var(--navbar-height);
    background-color: white;
    box-shadow: 0px 0px 10px #00000033;
    position: fixed;
    display: flex;
    align-items: center;
    z-index: 1;
}

.navbar-padding {
    width: min(40px, 4%);
}

#navbar-space {
    width: 100vw;
    height: var(--navbar-height);
}

#navbar-icon {
    height: 80%;
    aspect-ratio: 1;
    background-image: url("../res/icon.png");
    background-size: cover;
}

#navbar-split {
    flex-grow: 1;
}

.navbar-link {
    user-select: none;
    color: #4c4d52;
    transition: color 0.15s ease-in-out;
    margin-left: 15px;
    text-decoration: none;
}

.navbar-button {
    user-select: none;
    color: white;
    background: #2A7B9B;
    background: linear-gradient(124deg,rgba(42, 123, 155, 1) 0%, rgba(87, 199, 133, 1) 100%);
    display: flex;
    align-items: center;
    margin-left: 15px;
    padding: 8px;
    border-radius: 10px;
    transition: box-shadow 0.15s ease-in-out;
    box-shadow: none;
    text-decoration: none;
}

.navbar-button:hover {
    box-shadow: inset 0px 0px 50px 50px rgba(255,255,255,0.15);
}

.navbar-button i {
    font-size: 20px;
    margin-left: 5px;
}

.navbar-link:hover {
    color: #0099ff;
}

@media screen and ( max-width: 450px ) {

    .download-link {
        display: none;
    } 

}
