.lottery-main {
    display: grid;
    gap: 20px 5px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    position: relative;
    top: 5px;
    padding: 1%;
}

.lottery-main-body {
    border-radius: 10px;
    background-color: #714D11;
    width: 100%;
    height: 155px;
    position: relative;
}

.lottery-header {
    display: flex;
    justify-content: center;
    background: #50350B;
    border-radius: 10px 10px 15px 15px;
    padding: 5px;
    width: 100%;
    gap: 10px;
}

.lottery-title {
    font-size: 12px;
    display: flex;
    align-items: center;
    width: fit-content;
}

.title-color {
    color: inherit;
    font-weight: 800;
}

.lottery-body {
    margin: 15px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.lottery-body i {
    margin-right: 5px;
}

.lottery-body .ball-container {
    display: flex;
    margin-top: 10px;
    justify-content: center;
}

.lottery-main-body .lottery-more-button {
    width: 150px;
    border-radius: 15px;
    background: white;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translate(-50%);
    border: 1px solid transparent;
}

.lottery-more-button-text {
    color: black
}

.lottery-main-body .lottery-more-button a {
    width: 100%;
}

@media only screen and (max-width: 325px) {
    .lottery-main{
        font-size: 12px;
    }
    .ball-container > img{
        width: 22px;
        height: 22px;
    }
    .lottery-main-body{
        height: 145px;
    }
}