@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.overlay {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
    z-index: 1000;
    cursor: pointer;
    background-color: var(--color-bg-fill-alpha-black-40);
    position: fixed;
    top: 0;
    left: 0;
    animation: fade-in 0.3s ease-in-out;
}
