      body {
          background: black;
          /*color: rgba(168, 179, 224, 0.87);*/
          color: rgb(250, 204, 178);
          font-family: Roboto, Helvetica, Arial, sans-serif;
          margin: 0;
          padding: 0;
          font-size: x-large;
      }

      a:link,
      a:visited {
          background-color: black;
          color: lightgrey;
      }

      .tdcenter {
          text-align: center;
      }

      .trborder {
          border-width: 1pt;
          border-style: none;
          border-color: black;
      }

      .container {
          display: flex;
          align-items: center;
          /* Centers vertically */
          justify-content: center;
          /* Centers horizontally (optional) */

          /* Requires a defined height */
          /* height: 200px; */
      }

      .containerScreen {
          display: flex;
          justify-content: center;
          /* Horizontal centering */
          align-items: center;
          /* Vertical centering */
          min-height: 100vh;
          /* Makes container full screen height */
      }