@font-face {
    font-family: "font1";
    src: url("assets/CenturyStd-BookCondensed.ttf") format("truetype");
    font-style: normal;
    font-weight: normal;
  }
  
  @font-face {
    font-family: "font1";
    src: url("assets/CenturyStd-BookCondensedIt.ttf") format("truetype");
    font-style: italic;
    font-weight: normal;
  }
  
  html, body {
    height: 100%;
    margin: 0;
  }
  
  body {
    font-family: "font1";
    text-align: center;
    font-size: 1.3em;
    display: flex;
    flex-direction: column;
    color: #3E3B33;
    background-color: #FAF9F7;
  }
  
  img {
    width: 250px;
  }
  
  header {
    margin-top: 20px;
  }
  
  footer {
    margin-top: auto; /* Ensures the footer stays at the bottom */
    width: 100%;
  }
  
  .content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }