p {
  margin-bottom: 10px; /* Adjust the value as needed */
}

body {
  font-family: Verdana, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 1.2em;
  font-weight: 500;
  background-color: black;
  color: whitesmoke;
  padding: 2%;
}

/* Image styles */

img {
  max-width: 90%;
}

/* Line styles */

hr {
  width: 75%;
  margin: 5% auto;
}

/* Fixed-width container */

.fixed {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Center elements */

.center,
.center-table {
  width: auto;
  text-align: center;
  padding: 5px;
}

/* Center Table */

.center-table {
  max-width: 100%;
  overflow-x: auto;
  margin-left: auto;
  margin-right: auto;
  font-size: 1em;
}

/* Buttons */

.button {
  width: 50%;
  box-sizing: border-box;
  background-color: #07114a;
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 1em;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

/* Change color on hover */

.button:hover {
  background-color: hsl(240, 100%, 10%);
}

/* Table styles */

td {
  color: whitesmoke; /* Adjust as needed */
}

td.td1 {
  text-align: left;
  padding-right: 15px;
}
td.td2 {
  text-align: left;
  padding-left: 15px;
}
