*{
    padding: 0;
    margin: 0;
}

.card{
    box-shadow: 0 2px 4px 0 rgba(0,0,0,0.2);
    transition: 0.3s;
    width: 50%;
    /*cursor: pointer;*/
    border-radius: 10px;
    background-color:white;
    display: flex;
    flex-direction: column;
    margin: auto;
    margin-top: 20px;
    padding: 5px;
    direction: rtl;
}
.card:hover {
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2);
}

@media screen and (max-width: 600px) {
    .card{
        width: 90%;
    }
}
/***************************/
.text{
    padding: 10px;
    font-weight: 700;
    font-size:large;
    border-bottom: solid 1px #000;
}

span{
    color: #FF0000;
}
/**********************************************/
.button {
    border: none;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    border-radius: 25px;
}

.button1 {
    background-color: #49c520;
    color: white;
    border: 2px solid #49c520;
}

.button1:hover {
    background-color: white;
    color: black;
}
/***********/
.button0 {
    border: none;
    color: white;
    padding: 5px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 22px;
    transition-duration: 0.4s;
    cursor: pointer;
    width: 100%;
    margin-top: 15px;
    border-radius: 25px;
}

.button2 {
    background-color: #DA2D2D;
    color: white;
    border: 2px solid #DA2D2D;
}

.button2:hover {
    background-color: white;
    color: black;
}
/***********/
a{
    text-decoration: none;
}