.bettingApp {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}
.bettingApp_left {
    max-width: 480px;
    height: auto;
    position: relative;
}
.bettingApp_right {
    max-width: 600px;
    width: 100%;
    min-height: 0;
}
.bettingApp_right a {
    text-decoration: underline;
    color: #e55a53;
}
.bettingApp_right h2 {
    margin-bottom: 32px;
    color: #ffffff;
}
.bettingApp_right h3 {
    margin-bottom: 8px;
    color: #e55a53;
}
.bettingApp_right p {
    margin-bottom: 24px;
}
.bettingApp_right > a {
    display: inline-block;
    max-width: 164px;
}
.bettingApp_right > a > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media (max-width: 768px) {
    .bettingApp {
        flex-direction: column;
        gap: 12px;
    }
    .bettingApp_left {
        max-width: 380px;
        height: auto;
        position: relative;
    }
}
