/* Style Settings */
:root {
    --bgColor: #fbfbf0;
    --accentColor: #000067;
    --linkColor: #000067;
    --font: "Averta", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
      Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  }
  
  @font-face {
    font-family: Averta;
    src: url(/assets/fonts/Averta-Bold.woff);
    src: url(/assets/fonts/Averta-Bold.woff2);
    font-display: swap;
    font-weight: 700;
  }
  
  body {
    background-color: var(--bgColor);
    background-repeat: repeat;
    color: var(--accentColor);
    height: 100vh;
    width: 100%;
    margin: 0;
    padding: 0 0 50px;
    margin: 0px auto;
  }
  
  #logo {
    width: 144px;
    height: 144px;
    display: block;
    margin: 56px 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: var(--accentColor);
    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: 22px;
    margin-bottom: 7%;
  }
  
  .footerLinkLast {
    color: var(--accentColor);
    font-size: 0.9rem;
    font-weight: 600;
    line-height: 1.25;
    font-family: var(--font);
    width: 100%;
    text-align: center;
    text-decoration: none;
  }
  
  #links {
    max-width: 675px;
    width: 90%;
    display: block;
    margin: auto;
  }
  .link {
    display: block;
    background-color: var(--bgColor);
    color: var(--linkColor);
    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: 1.125rem;
    cursor: pointer;
  }
  
  .link:hover {
    background-color: var(--accentColor);
    color: var(--bgColor);
  }