:root{
    --color1: #ec4e20;
    --color2: #353531;
}

.cards{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.card{
    list-style: none;
    background: var(--color2);
    display: flex;
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    border-radius: 1rem;
}

.card__div{
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
}

.card__button{
    width: 15rem;
    height: 4rem;
    background: var(--color1);
    border: none;
    border-radius: 0.5rem;
    color: white;
}

.card__button:hover{
    cursor: pointer;
}

.card__text{
    color: white;
    font-size: 1.5rem;
}