body {
    background-color: rgb(223, 222, 217);
    color: rgb(51, 51, 51);
    font-family: "brandon-grotesque", sans-serif;
    font-weight: 400;
    font-style: normal;
    text-align: center;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  #main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: 960px;
    margin: 0 auto;
    padding: 0 20px;
    justify-content: center;
    align-items: center;
  }
  
  #image-container {
    max-width: 80%;
    display: flex;
    justify-content: center;
    margin: 40px 0 40px 0;
  }
  
  #logo {
    max-height: 200px;
    height: auto;
    display: block;
    margin: 0 auto;
    width: auto;
  }
  
  #blurb {
    font-size: 1.5em;
    margin-bottom: 30px;
  }

  #redirect a {
    display: inline-block;
    padding: 10px 20px;
    background-color: rgb(68, 68, 68);
    color: rgb(223, 222, 217);
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    margin-bottom: 60px;
  }

  #redirect a:hover {
    background-color: rgb(88, 88, 88);
  }

  #footer {
    background-color: rgb(68, 68, 68);
    color: rgb(153, 153, 153);
    font-size: 1em;
    padding: 40px 0;
    width: 100%;
  }

  #footer a {
    color: inherit;
    text-decoration: none;
    opacity: 100%;
  }

  #footer a:hover {
    opacity: 70%;
  }

@media (max-width: 600px) {
  #main-content {
    max-width: 100%;
    padding: 0 15px;
  }

  #image-container {
    max-width: 95%;
  }
}