/************************************************
 *  File name   : footer.css                    *
 *  Author      : Yohanes Benny Bennedictus     *
 *  Date        : April, 24 2025                *
 *  Description : CSS rules which define the    *
 *                <footer> element              *
 ************************************************/

 footer {
    display: inherit;
    grid-template-rows: 1fr auto;
    height: 100px;
    margin-bottom: 0;
    background-color: var(--maroon);
 }

 #copyright > p {
    text-align: center;
    margin-bottom: 7px;
    font-family: Poppins, sans-serif;
    font-size: 0.9em;
    color: var(--white);
 }