.results {
    margin-top: 20px;
    font-family: Inter;
}

.top h1 {
    font-family: Inter;
    font-weight: 800;
    font-size: 23px;
    line-height: 27px;
    margin-bottom: 10px;
}

.top p {
    color: #9A9A9A;
    font-size: 15px;
    line-height: 22px;
}

.lottery {
    margin-top: 20px;
}

.lottery h3 {
    font-weight: bold;
    font-size: 17px;
    line-height: 22px;
    margin-bottom: 15px;
}

.lottery__list {
    display: grid;
    gap: 15px;
    grid-template-columns: auto auto auto;
    padding-bottom: 5px;
}

.lottery__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 75px;
    background: white;
    border-radius: 15px;
    box-shadow: 0px 5px 20px rgba(43, 93, 168, 0.2);
}

.lottery__item img {
    max-width: 66px;
}

@media screen and (min-width: 1025px) {
    .out-of-header {
        margin-top: 110px;
    }

    .top h1 {
        font-size: 35px;
        line-height: 45px;
        margin-bottom: 10px;
    }

    .lottery h3 {
        font-size: 21px;
        line-height: 27px;
    }

    .lottery__item {
        height: 100px;
        transition: all .3s ease;
        -webkit-transition: all .3s ease;
        -moz-transition: all .3s ease;
        -ms-transition: all .3s ease;
        -o-transition: all .3s ease;
    }


    .lottery__item img {
        max-width: 105px;
    }

    .lottery__item:hover {
        transform: scale(1.05);
        -webkit-transform: scale(1.05);
        -moz-transform: scale(1.05);
        -ms-transform: scale(1.05);
        -o-transform: scale(1.05);
    }
}

@media screen and (min-width: 769px) {
    .lottery__list {
        grid-template-columns: auto auto auto auto auto;
    }
}

.fastLottery {
    padding-bottom: 50px;
}

@media screen and (max-width: 1024px) {
    .footer {
        display: none;
    }
}