body {
    background-color: var(--c4);
    overflow-x: hidden;
}

.bg-layer {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    pointer-events: none;
}

.card {
    width: 40%;
}

.street-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn {
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: var(--c2);
    color: var(--c4);
    font-size: 20px;
}

.btn:hover {
    background: var(--c1);
}
