/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

table {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

img { max-width: 100%; }

h1 {
  text-align: center;
}

h2 {
  text-align: center;
}

ul {
  text-align: left;
}

th, td {
    border: 1px solid white;
  border-radius: 10px;
  border-collapse: collapse;
  background-color: #96D4D4;
  color:#000000;
}

p {
  text-align: center;
}
 
body {
  margin:0;
  background-color: black;
  color: white;
  font-family: Verdana;
}
 /* The navigation bar */
.navbar {
  overflow: hidden;
  background-color: #ff69b4;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  width: 100%; /* Full width */
}

/* Links inside the navbar */
.navbar a {
  float: left;
  display: block;
  color: #00000;
  text-align: center;
  padding: 4px 6px;
  text-decoration: none;
}

/* Change background on mouse-over */
.navbar a:hover {
  background: #ddd;
  color: black;
}

/* Main content */
.main {
  margin-top: 30px; /* Add a top margin to avoid content overlay */
} 