body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: url(Images/seamless-vintage-fish-pattern-vector-14279658.webp);
    color: #ffffff;
    line-height: 1.6;
    min-height: 100vh;
    padding: 20px;
  }
  div#container {
    max-width: 1200px;
    margin: auto;
    background-color: rgba(0, 51, 102, 0.8);
    padding: 20px;
    border-radius: 10px;
  }
  header {
    text-align: center;
    margin-bottom: 30px;
  }
  
  header h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #f0c040;
    text-shadow: 2px 2px 4px #000;
  }
  nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
  }
  
  nav a {
    text-decoration: none;
    color: #f0c040;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 8px 15px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
  }
  
  nav a:hover {
    background-color: #f0c040;
    color: #003366;
  }
  section#main {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    text-align: center;
  }
  footer {
    text-align: center;
    margin-top: 40px;
    font-size: 0.9rem;
    color: #ccc;
  }
  section#main img {
    display: block;
    margin: 10px auto 10px auto;
    padding: 7px;
    background-color: white;
    border: 1px solid black;
    box-shadow: 2px 4px 8px black;
}
section#information {
  text-align: center;
}
footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: red;
  color: white;
  text-align: center;
}

#lure-table table {
  margin: 40px auto; 
  width: 80%;       
  border-collapse: collapse;
  background-color: #ffffff;
  color: #003366;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

#lure-table th, #lure-table td {
  padding: 15px 20px;
  border: 1px solid #003366;
  text-align: center;
  font-size: 1.2rem;
}

#lure-table th {
  background-color: #f0c040;
  color: #003366;
}

#lure-table tr:nth-child(even) {
  background-color: #f9f9f9;
}

footer {
  position: relative;
  bottom: 0;
  background-color: red;
  color: white;
  text-align: center;
  padding: 10px;
  margin-top: 50px;
}