/* Style Settings */
:root {
    --bgColor: #002a42;
    --accentColor: #c3a654;
    --linkColor: #c3a654;
    --font: "Comic Sans MS", "Comic Sans, cursive;, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  }
  
  @font-face {
    font-family: NeubauGrotesk;
    src: url(/assets/fonts/NeubauGrotesk-ExtraBold.woff);
    src: url(/assets/fonts/NeubauGrotesk-ExtraBold.woff2);
    font-display: swap;
    font-weight: 700;
  }

  @font-face {
    font-family: NeubauGrotesk-normal;
    src: url(/assets/fonts/NeubauGrotesk.woff);
    src: url(/assets/fonts/NeubauGrotesk.woff2);
    font-display: swap;
    font-weight: 700;
  }
  
  body {
    background-color: var(--bgColor);
    background-repeat: repeat;
    color: var(--accentColor);
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    margin: 0px auto;
  }
  
  #logo {
    width: 192px;
    height: 192px;
    display: block;
    margin: 36px auto 20px;
  }
  
  #userName {
    color: var(--accentColor);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.25;
    display: block;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
  }
  
  #center {
    text-align: center;
    margin-top: 56px;
  }
  
  .footerLink {
    color: #c3a654;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
    margin-right: 45px;
    margin-bottom: 7%;
    font-family: NeubauGrotesk-normal;
    font-size: 0.8rem;
    line-height: 0px;
  }
  
  .footerLinkLast {
    color: #c3a654;
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
    font-family: NeubauGrotesk-normal;
    font-size: 0.8rem;
    line-height: 0px;
  }
  
  #links {
    max-width: 675px;
    width: 90%;
    display: block;
    margin: auto;
  }
  .link {
    display: block;
    background-color: var(--bgColor);
    color: var(--accentColor);
    font-family: var(--font);
    text-align: center;
    margin-bottom: 20px;
    padding: 17px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.25s cubic-bezier(0.08, 0.59, 0.29, 0.99);
    border: solid var(--accentColor) 2px;
    font-weight: bold;
    line-height: 12px;
    cursor: pointer;
  }
  
  .link:hover {
    background-color: var(--accentColor);
    color: var(--bgColor);
  }