.main-header {
    padding: 0.5rem 2rem;
    background-color: #333;
    box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.66);
    margin: 0;
    z-index: 10;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .main-header > div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
  }
  
  .header-left button {
    font-size: 2rem;
    background: transparent;
    border: none;
    outline: none;
    margin: 0;
    padding: 0 1rem;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  
  .header-center h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
    text-overflow: ellipsis;
    margin-left: 2rem;
  }

  .header-center h1 span {
    font-weight: bolder;
    font-size: 1.5rem;
  }
  
  .header-right p {
    margin-bottom: 0;
    margin-top: 0;
    margin-right: 1rem;
  }
  
  .main-footer {
    padding: 0.5rem 2rem;
    background-color: #333;
    box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.66);
    margin: 0;
    z-index: 10;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  
  .main-footer {
    padding: 0.5rem 2rem;
    background-color: #333;
    box-shadow: 0 1px 10px 1px rgba(0, 0, 0, 0.66);
    margin: 0;
    z-index: 10;
    color: #fff;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .footer-left a {
    color: #fff;
    font-size: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .footer-left a span {
    font-size: 1.1rem;
    margin-left: 1rem;
  }
  .footer-left a:hover {
    color: #fff;
    text-decoration: none;
  }
  .footer-center h1 {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0;
  }
  .footer-center h1 span {
    font-weight: bolder;
    font-size: 1.5rem;
  }
  
  .footer-right p {
    margin-bottom: 0;
    margin-right: 1rem;
  }
  
  .menu-button {
    margin-left: 0.5rem;
    background-color: #fff;
    color: #f2463d;
    padding: 0.2rem 0.5rem;
    border-radius: 10px;
  }
  .menu-button h3 {
    margin: 0;
  }
  .menu-button:hover {
    color: #000;
  }
  
  @media screen and (max-width: 650px) {
    .main-header {
      padding: 0.75rem 1rem;
    }
  
    .main-header .header-right {
      display: none;
    }
  
    .header-left button {
      padding: 0;
    }
    .header-center {
      margin-right: auto;
      margin-left: auto;
    }
  
    .main-footer {
      flex-direction: column;
      padding: 1.5rem 1rem 0.25rem 1rem;
    }
  
    .main-footer > * {
      margin-bottom: 1rem;
    }
  
    .main-footer .footer-right-top {
      order: 1;
    }
  
    .main-footer .footer-left-bottom {
      order: 2;
    }

    .header-center h1{
      margin-left: 1rem;
    }
  }