Card.scss 559 Bytes
.card{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 30rem;
    font-size: 2rem;
    font-weight: bold;

    &__desc{
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 6rem;
    }
    
    &__content{
        cursor: pointer;
        width: 25rem;
        height: 5rem;
        margin: 1rem;
        font-size: 1rem;
        border-radius: 1rem;
        color: #ffffff;
        background-color: #536349;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}