/* compass */

.compass {
    position: fixed;
    bottom: 68px;
    left: 32px;
    width: 76px;
    aspect-ratio: 1;
    z-index: 999;
    user-select: none;
    opacity: 0.85; 

    font-family: "Quicksand", sans-serif;
}

.base {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: #000 0.1px solid;
    background-color: rgba(255, 255, 255, 0.95);
}

.needle {
    position: absolute;
    /* background-color: aqua; */
    top: 50%;
    left: 50%;
    width: 120%;
    aspect-ratio: 1;
    margin-left: -60%;
    margin-top: -60%;
    transform-origin: center;
    transition: transform 0.2s ease-out;
}

.needle > #ne {
    position: absolute;
    top: 50%; 
    left: 50%;
    width: 60%;
    aspect-ratio: 1;
    margin-left: -30%;
    margin-top: -30%;
    background-color: #000;
    transition: transform 0.1s ease-in-out;
    clip-path: polygon(50% 100%, 25% 75%, 50% 75%, 75% 75%);
}

.needle > #north {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    aspect-ratio: 1;
    margin-left: -30%;
    margin-top: -30%;
    display: flex;
    justify-content: center;
    align-items: center;
}