@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,400;0,500;0,600;1,200&display=swap');
*{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}
a{
    color: #2d2d2d;
    text-decoration: none;
}
body{
    display: flex;
    flex-direction: row;
    background-color: rgb(245, 245, 245);
}
.border{
    padding: 16px;
    border-radius: 10px;
    margin-bottom: 15px;
}
.time{
    margin-bottom: 10px;
    color: #d3d3d3;
}
.number{
    padding: 5px 14px 5px 14px;
    position: relative;
    background-color: white;
    border-radius: 10px;
    top: -51px;
    left: -37px;
}
.main-cont{
    display: flex;
    margin: 0 auto;
    flex-direction: column;
    align-items: center;
    padding: 50px;
    width: 80%;
    margin-top: 50px;
}
.block{
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: white;
    border-radius: 10px;
    margin-right: 50px;
    margin-bottom: 50px;
    flex-direction: column;
    padding: 20px;
    width: 271px;
}
.image{
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 22px;
}
.image img{
    width: 135px;
}
.os{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.bold-y{
    font-weight: bold;
    color: #ff9900;
    font-size: 20px;
    margin-right: 6px;
}
.bold{
    font-weight: bold;
    font-size: 20px;
    margin-left: 6px;
}
.bonus{
    width: 87px;
    border-radius: 10px;
    background-color: #e9e9e9;
    text-align: center;
    padding: 5px;
    color: #c1c1c1;
}
.title{
    margin-bottom: 36px;
}

.buttons{
    margin-top: 14px;
}
.play-button{
    border-radius: 10px;
    border: none;
    padding: 13px;
    background-color: #028665;
    font-size: 15px;
    font-weight: bold;
    cursor: pointer;
    width: 100%;
    color: #ffffff;
}
.play-button:hover{
    background-color: #02bb8d;
}
.blocks{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
@media screen and (max-width: 460px) {
    .blocks {
        display: flex;
        flex-wrap: wrap;
        width: 100%;
        flex-direction: column;
        align-items: center;
    }
    .block {
        margin-right: 0;
    }
    .main-cont{
        text-align: center;
    }
}