.words {
    margin: 30px;
}

/* ================================ */
/* Card style */
/* ================================ */

.card {
    border: lightgray;
    border-style: solid;
    border-width: 1px;
    width: 40%;
    height:200px;
    margin: 10px;
}

.card:hover {
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.cardContainer {
    padding: 2px 16px;
}

.cardArea {
    display: flex;
    flex-direction: row;
    margin: 30px;
}

/* ================================ */
/* Button */
/* ================================ */

.button {
    background-color: #008CBA;
    border: none;
    color: white;
    padding: 15px 32px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
}

.buttonArea{
    align-items: center;
    text-align: center;
}

/* ================================ */
/* Footer style */
/* ================================ */

footer {
    text-align: center;
    padding: 3px;
    background-color: lavenderblush;
}