/* logo.css */

/* Style for the header to align items horizontally */
header {
    display: flex;
    text-align: center;               /* Use flexbox for horizontal alignment */
    align-items: center;         /* Vertically center items in the header */
    padding: 10px;               /* Add padding around the header */
    background-color: #e2dfdf;   /* Optional: background color for the header */
}

/* Style for the logo image */
.header-logo {
    width: 50px;                 /* Set the width of the logo image */
    height: auto;                /* Maintain the aspect ratio of the image */
    margin-right: 15px;          /* Space between the logo and the header text */
}

/* Style for the header text */
h2 {
    font-size: 24px;             /* Adjust the font size of the header text */
    margin: 0;                   /* Remove default margin around the h2 */
}


header {
    text-align: center;
  }
