body
{
  min-height: 100vh;
  margin: 0;
  background: #0c192c;
  font-family: Arial, sans-serif;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #15335f;
  padding: 10px 20px;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: black;
}

nav {
  display: flex;
  gap: 20px
}

nav a {
  font-size: 18px;
  text-decoration: none;
  color: black;
  padding: 5px 10px;
  border: 2px solid black;
}

nav a:hover {
  background-color: black;
  color: white;
  transition: background-color 0.3s ease;
}
h1
{
  margin-left: 3%;
  color: rgba(255, 255, 255, 0.774);
}
h2
{
  margin-left: 3%;
  color: rgba(255, 255, 255, 0.774);
}
table {
  border-collapse: collapse;
  border: 2px solid rgb(140 140 140);
  font-family: sans-serif;
  font-size: 0.8rem;
  letter-spacing: 1px;
  margin-left: 3%;
}

.container
{
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: auto;
}
.bubbles
{
  z-index: -100;
  position: fixed;
  display: flex;
}
.bubbles span
{
  position: relative;
  width: 30px;
  height: 30px;
  background: #4fc3dc;
  margin: 0 4px;
  border-radius: 50%;
  box-shadow: 0 0 0 10px #4fc3dc44,
  0 0 50px #4fc3dc,
  0 0 100px #4fc3dc;
  animation: animate 15s linear infinite;
  animation-duration: calc(125s / var(--i));
}
.bubbles span:nth-child(even)
{
  background: #ff2d75;
  box-shadow: 0 0 0 10px #ff2d7544,
  0 0 50px #ff2d75,
  0 0 100px #ff2d75;
}
@keyframes animate
{
  0%
  {
    transform: translateY(60vh) scale(0);
  }
  100%
  {
    transform: translateY(-120vh) scale(1);
  }
}

caption {
  caption-side: bottom;
  padding: 10px;
  font-weight: bold;
}

thead,
tfoot {
  background-color: rgb(26, 135, 171);
}

th,
td {
  border: 1px solid rgb(160 160 160);
  padding: 8px 10px;
}

td:last-of-type {
  text-align: center;
}

tbody > tr:nth-of-type(even) {
  background-color: rgb(159, 174, 179);
}

tbody > tr:nth-of-type(odd) {
  background-color: rgb(223, 246, 255);
}

tfoot th {
  text-align: right;
}

tfoot td {
  font-weight: bold;
}

tfoot td:last-of-type {
  text-align: left;
}
