body {
  min-height: 100vh;
  margin: 0;
  background-color: #3a6ea5;
  background-image: url("./resources/images/xp_desktop.jpg");
  background-repeat: no-repeat;
  background-position: center top;
  background-attachment: fixed;
  background-size: auto 100%;
}

nav {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.nav-option-container {
  display: flex;
  align-items: center;
  gap:5px
}

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: small;
}

ul li a {
  display: block;  
  padding: 14px 16px;
  text-decoration: none;
}

ul li a:hover {
  color: #800080;
}

.container {
  width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.gif-container {
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.tooltip {
  position: relative;
  display: inline-block;
  cursor: pointer;
}

.tooltiptext {
  visibility: hidden;
  background-color: black;
  color: #ffffff;
  text-align: center;
  padding: 5px 5px;
  border-radius: 6px;
  position: absolute;
  z-index: 1;
}

.tooltip:hover .tooltiptext {
  visibility: visible;
}


/* Style the footer */
footer {
  position: absolute;
  width: 600px;
  padding: 10px;
  text-align: center;
  color: white;
  bottom: 0;
}

.backlog-container {
  width: 800px;
  margin-left: auto;
  margin-right: auto;  
}

table {
   width: 700px;
   margin-left: auto;
  margin-right: auto;  

}

table, th, td {
  border: 1px solid white;
  border-collapse: collapse
}

th, td {
  padding: 5px;
}

th, td {
  font-family: Consolas, "Lucida Console", Monaco, monospace;
}