@import url('https://fonts.googleapis.com/css2?family=Sora:wght@100..800&display=swap');
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: 'Sora'
}

a {
    text-decoration: none;
}

li {
    list-style-type: none;
}

body {
    background-color: #D1D2CA;
}

nav ul{
    display: flex;
    width: 100vw;
    justify-content: center;
    padding: 10px;
}

nav ul li {
    margin: 20px;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5rem;
}

nav ul li a {
    color: #171717;
    cursor: pointer;
}



body.modal-open::before {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 99;
}

body.modal-open #body {
    filter: blur(4px);
    pointer-events: none;
    user-select: none;
}

.text-muted {
    color: #888;
}

.spinner-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(209, 210, 202, 0.6);
    z-index: 50;
    border-radius: inherit;
}

.spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0,0,0,0.1);
    border-top-color: #A8C2AB;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}
