body, html {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  
  body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/img/bck-keithjohnson.jpg') no-repeat center center/cover;
    filter: grayscale(100%) blur(10px);
    opacity: 0.35;
    z-index: -1;
  }
  
  .logo {
    max-width: 100%;
    height: auto;
  }
  @media (max-width: 1000px) {
    .logo {
        max-width: 90%; /* Change to your preferred padding */
    }
  }
  
  .container-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    position: relative;
    z-index: 1;
  }
  
  .contact-info {
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
    color: #000;
  }
  
  .contact-info a {
    color: #007bff;
    text-decoration: none;
  }
  
  .contact-info a:hover {
    text-decoration: underline;
  }
  
  header {
    position: absolute;
    top: 10px;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-right: 20px;
  }
  
  header a {
    text-decoration: none;
    color: #000;
    font-size: 25px;
    margin-left: 15px;
  }
  
  header a i {
    max-width: 50px;
    max-height: 50px;
  }
  
  header a:hover {
    color: #007bff;
  }
  
  footer {
    position: absolute;
    bottom: 10px;
    width: 100%;
    text-align: center;
    font-size: 0.9rem;
    color: #000;
  }
  
  footer a {
    color: #007bff;
    text-decoration: none;
  }
  
  footer a:hover {
    text-decoration: underline;
  }
  