    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      background: #ffffff;
      min-height: 100vh;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      overflow-y: hidden;
    }

    a {
      color: black;

    }

    a:hover {
      color: #4A9EE8
    }

    body.dark {
      background: #111111;
      color: #ffffff;

       a {
        color: white;
      }

      a:hover {
        color: #4A9EE8
      }
    }

    .header{
      font-family:  'Times New Roman', Times, serif;
      font-weight: 100;
      position: absolute;
      bottom: 10px;
      left: 0;
      right: 0;
    }