body {
  background-color: #1f1f1f;
  font-family: arial;
}
header {
  position: fixed; 
  top: 0; 
  margin: auto;
  text-align: center;
  width: 100%; 
  z-index: 1000; 
  background-color: #1f1f1f;
}

 h1 {
      font-family: arial;
      margin: auto;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      font-size: 75px;
      font-weight: bold;
      color: white;
    }

 h2 {
      font-family: arial;
      margin: auto;
      margin-top: 10px;
      margin-bottom: 10px;
      text-align: center;
      font-size: 60px;
      font-weight: bold;
      color: white;
    }

td {
  padding: 5px;
}

.button {
      font-weight: bold;
      font-size: 30px;
      color: white;
      text-align: center;
      background-color: #2b2b2b;
      border-color: #000000;
      text-decoration: none; 
      display: inline-block;
      padding: 10px; 
      border-radius: 10px;
      transition: background-color 0.15s;
      width: 200px;
      height: 150px;
    }

.button:hover {
      background-color: #1a1a1a;
      cursor: pointer;
      text-decoration: underline;
    }

 table {
      margin: 0 auto; 
     }
