body {
    background-color: #0B0C14;
}

.cta-group {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
}

.cta-single span {
    font-family: "Silka", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 18px;
    letter-spacing: -0.01rem;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px 23px;
    transition: 0.2s linear;
}

.cta-single.fill-blue span {
    background: #4273f1;
    border-radius: 91px;
}

.cta-single.border-white span {
    border: 0.0938rem solid #F9F9FF66;
    border-radius: 91px;
}

.cta-single.fill-blue:hover span {
    background: #3462d9;
}

.cta-single.border-white:hover span {
    background: rgba(222, 232, 250, 0.1);;
}

@media screen and (max-width: 680px) {
    .cta-single span {
        font-size: 14px;
        line-height: 14px;
        padding-left: 20px;
        padding-right: 20px;
    }
    .cta-group{
        margin-top: 28px;
    }
}