@import "globals.css";

.generic-logo-area 
{
    grid-area: logo;
    padding: 1.6rem 0 0 1.6rem; /* Empty space around the logo */
    /* Aligns the logo to top-right of its grid cell */
    justify-self: start;
    align-self: start;
}

.generic-site-logo 
{
    width: 150px; /* Base size */
    max-width: 100%; /* Shrink if the grid cell gets too small */
    height: auto;
    cursor: pointer;
}