/*
30 JUL 2026
building the tennis ball site ...
*/

body,
h1,
h2,
h3,
ul,
li,
a {
    /* 14AUG2025 - a is new */
    /*font-family: Cormorant, serif;*/
    margin: 0;
    /* I added this line */
    padding: 0;
    /* I added this line */
    border: 0;
    /* I added this line */
    outline: 0;
    /* I added this line */
    font-size: 100%;
    /* I added this line */
}

body {
    font-family: "Roboto", sans-serif;
    background-color: skyblue;
    color: black;
}

/* ===  BEGIN CONTAINER  ======================= */

.project{
    width: 300px;
    color: red;
    position: relative;
}

.project img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.project .overlay {
    /* background-color: yellow; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;    /* center text horizontally ...*/
    align-items: center;        /* center text vertically ...*/
    margin: 0;
}
