:root {
    --text-color: #333333;
    --link-color: #0000EE;
    --background-color: #FFFFFF;
  }
  html, body {
    padding: 0;
    margin: 0;
    background: var(--background-color);
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
  }

  body {
    padding: 64px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100svh;
  }

  .container {
    text-align: center;
    max-width: 260px;
    margin: 0 auto;
  }
  
  main.container {
    margin-top: auto;
    margin-bottom: auto;
  }
  h1, .text {
    color: var(--text-color);
    color: var(--text-color);
    font-family: "IBM Plex Sans Condensed", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: -0.2px;
    line-height: 100%;
    text-transform: uppercase;
  }


  p, h1 {
    margin-bottom: 8px;
  }

  p:last-of-type {
    margin-bottom: 0;
  }
  
  .link {
    color: var(--link-color);
    text-decoration: none;
  }

  .link:visited { 
    color: var(--link-color); 
  }

  .link:hover, .link:focus { 
    text-decoration: underline; 
  }

  .link:focus {
    background-color: yellow;
    outline: none;
  }