* {
    box-sizing: border-box;
}

body {
    margin: 0;
}

@keyframes loading-rotation {
    100% { transform: rotate(1turn); }
}
.loading-icon {
    content: url("/loading.png");
    background: radial-gradient(farthest-side, rgb(255 255 255 / 80%) 95%, transparent) top/18% 18% no-repeat, conic-gradient(transparent 65%, rgb(255 255 255 / 80%));
    -webkit-mask: radial-gradient(farthest-side, transparent 64%, black 0);
    mask: radial-gradient(farthest-side, transparent 64%, black 0);
    border-radius: 50%;

    display: inline;

    width: 1em;
    height: 1em;
    margin-bottom: -2px;
    animation: 0.4s infinite linear loading-rotation;
    /*margin-left: auto;
    margin-right: auto;*/
    filter: invert();
}

.navbar {
    position: sticky;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    min-height: 56px;
    margin-bottom: 10px;
    
    padding: 0 10px;

    background: #f4f4f4;
    border-bottom: 1px solid #ccc;
    /* box-shadow: 0 0 8px rgb(0 0 0 / 20%); */
    /* no fancy effects because it makes cody mad */

    z-index: 255;
}
.navbar > div {
    flex: none;
    display: flex;
    align-items: center;
    gap: 20px;
}

.content {
    margin: auto;
    width: calc(100% - 32px);
    max-width: 1400px;
}