/* styles-boiler-plate.css
   Main global stylesheet containing resets, base styles, and component imports */
@import './header.css';
@import './utilities/layout.css';
@import './utilities/borders.css';
@import './utilities/spacing.css';
@import './utilities/effects.css';
@import './utilities/text.css';
@import './responsive.css';
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
.page-title {
    display: flex;
    width: 100%;
    justify-content: space-around;
}
.page-title>img {
    max-height: 50px;
    max-width: 200px;
}
.page-title > h1 {
    font-size: 80%;
 }
.page-title > h1 img{
    height: 50%;
    width: 50%;
 }
 
 .page-wrapper > footer.footer-header  > .page-logo > img {
    height: 100%;
    width: 100%;
    max-height: 100px;
}
.page-logo img {max-width: 100px;}
.hide {
    display: none;
}

