.lottery-main {
    display: flex;
    gap: 40px 20px;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

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

.lottery-header {
    background: #50350B;
    border-radius: 5px 5px 25px 25px;
    width: 100%;
}

.lottery-title {
    
    font-size: 16px;
    display: flex;
    align-items: center;
    text-align: left;
}

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

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

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

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

.lottery-more-button {
    width: 80%;
    border-radius: 25px;
    background: white;
    position: absolute;
    bottom: -10px;
    left: 25px;
}

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

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

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