body {
    margin: 0;
    min-height: 100vh;
    width: 100%;
    overflow-x: hidden;
    font-family: 'SF Pro Text', sans-serif;
    background: #1f1f1f;
    position: relative;
    background-image: url('/assets/images/bg.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-attachment: fixed;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;

    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(51, 49, 49, 0.7);
    z-index: -1;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    z-index: 99999;
    max-width: 400px;
    border-radius: 10px;
    padding: 15px 30px 30px 30px;
    background: #1f1f1f;
    box-shadow: 0px 4px 14px #0c0c0c;
}

.content__text {
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff99;
}

.content__title {
    font-size: 20px;
}

@media (max-width: 991px) {
    body {
        background-size: cover;
    }
}

@media (max-width: 768px) {

    .content {
        width: 300px;
    }

    .content__title {
        font-size: 18px;
    }

    .content__text {
        font-size: 14px;
    }
}