.catch {
    text-align: center;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#catch-loop {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
    border: 10px solid var(--color-light);
    border-radius: 50%;
}

#catch-ball {
    position: absolute;
    width: 20px;
    height: 20px;
    top: 0;
    left: 100px;
}

.catch .catch-hitbox {
    width: 160px;
    height: 160px;
    margin-top: -70px;
    margin-left: -70px;
    padding: 30px;
    border-radius: 50%;
}

.catch .catch-visual {
    width: 100%;
    height: 100%;
    background: var(--color-accent-1);
    border-radius: 50%;
    cursor: pointer;
}