body {
    font-family: helvetica, sans-serif;
    margin: 0;
    line-height: 1.5;
  }
  header, main, footer { padding: 1rem;}
* { box-sizing: border-box;}

  header h1,
  main h2 { margin: 0; padding: 0;}
  header h1 {
    background-image: url('../images/Major_League_Baseball_logo.svg');
    background-repeat: no-repeat;
    padding-left: 190px;
    min-height: 100px;
    padding-top: 20px;
  }
  header { display: flex;}
  header h1 { margin-right: 2rem; align-self: center; flex-grow: 0; flex-shrink: 0; flex-basis: auto;}
  header > div { flex-grow: 1; flex-shrink: 0; flex-basis: auto; align-self: center;}
  
  a:link, a:visited {
      color: blue;
      text-decoration: none;
  }
  a:hover { text-decoration: underline;}
  a:active { color: white; background-color: blue;}
  main.bos h2 {
    background-image: url('../images/bos.svg');
    background-size: contain;
    background-repeat: no-repeat;
    font-size: 4rem;
    padding-left: 1.5em;
  }
  footer {
    margin-top: 2rem;
    padding: 0.5rem;
    background-color: rgb(240, 240, 240);
    border-top: thin solid black;
  }
