body {
    padding: 0;
    margin: 0;
    font-family: 'Inter';
}

.page-world-lottery {
    background-image: url('../img/bg.png');
    height: 100vh;
    display: grid;
    text-align: center;
    align-items: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}


@media (max-width: 900px) {
    .page-world-lottery {
        background-image: url('../img/bg-mobile.png');
    }
}

.page-world-lottery img {
    margin-bottom: 20px;
}

.page-world-lottery::before {
    content: '';
    width: 100%;
    height: 100%;
    background: linear-gradient(360deg, #000000eb 30%, transparent 100%);    position: absolute;
    pointer-events: none;
    z-index: 0;
}

.page-world-lottery__box {
    z-index: 1;
    color: #fff;
}

h1 {
    font-size: 20px;
    font-weight: 400;
    line-height: 24.2px;
    text-align: center;
}

h1 span {
    font-size: 20px;
    font-weight: 600;
    line-height: 24.2px;
    text-align: center;
    color: #6D8D01;
}

.page-world-lottery__fadein p {
    font-size: 12px;
    font-weight: 400;
    line-height: 14.52px;
    text-align: center;
}

button {
    width: 184px;
    height: 40px;
    padding: 0px 24px 0px 24px;
    border-radius: 8px;
    font-family: Inter;
    font-size: 14px;
    font-weight: 600;
    line-height: 16.94px;
    text-align: center;
    background: #6D8D01;
    color: #fff;
    border: none;
    margin-top: 20px;
    cursor: pointer;
    box-shadow: 3px 3px 12px -5px #a9d41d;
}

button:hover {
    transition: .2s;
     background: #4e6502;
     box-shadow: none;
}

footer {
    position: absolute;
    bottom: 0;
    color: #fff;
    width: 100%;
    font-size: 12px;
    font-weight: 400;
    line-height: 21.33px;
    text-align: center;
}

.page-world-lottery__icon-one {
    width: 10px;
    height: 10px;
    position: fixed;
    display: block;
    background: #8aae11;
    right: -5px;
    box-shadow: 3px -3px 70px 70px #8aae11;
    top: 0;
    z-index: 1;
    opacity: .3;
}


@media (min-width: 900px) {
    .page-world-lottery__icon-one {
        width: 100px;
        height: 100px;
        position: fixed;
        display: block;
        background: #8aae11;
        box-shadow: -20px 11px 161px 181px #8aae11;
        right: -170px;
        top: -140px;
        z-index: 1;
        opacity: 0.8;
    }
}

.page-world-lottery__icon-two {
    width: 10px;
    height: 10px;
    position: fixed;
    display: block;
    background: #8aae11;
    left: -5px;
    box-shadow: 3px -3px 70px 70px #8aae11;
    bottom: 0;
    z-index: 1;
    opacity: .3;
}