/************************************************
 *  File name   : header.css                    *
 *  Author      : Yohanes Benny Bennedictus     *
 *  Date        : April, 11 2025                *
 *  Description : CSS rules definition for      *
 *                header section of index.html  *
 ************************************************/

 header {
    display: inherit;
    grid-template-columns: auto 1fr;
    overflow: hidden;
    /*grid-template-rows: auto 1fr;*/
}

header img {
    margin-top: 30px; 
    margin-left: 10px;
}

#title-container {
    display: inherit;
    grid-template-rows: auto 1fr;
}

#title-container > h2 {
    text-align: right;
    font-size: 1.05em;
    font-family: Handlee, sans-serif;
    padding-right: 10px;
    margin-top: 0;
}

#title-container > h1 {
    text-align: center;
}