body {
    margin: 0;
    font-family: Arial, sans-serif;
  }

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #333;
    padding: 10px 20px;
  }

.navbar .logo {
    color: white;
    font-size: 24px;
    text-decoration: none;
  }

.nav-links {
    display: flex;
    gap: 20px;
  }

.nav-links a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    transition: background 0.3s;
  }

.nav-links a:hover {
    background-color: #555;
  }

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
  }

.burger div {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
  }

  table {
    width: 100%;
    border-collapse: collapse;
  }
  th, td {
    padding: 12px;
    border: 1px solid #000000;
    text-align: left;
  }

  th {
    background-color:cornflowerblue;
  }

  tr:hover {background-color: #D6EEEE;}

  .img1 {
    max-width: 100px;
    border-radius: 10px;
  }

  .img2 {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: 400px;
    width: auto;
  }

  h1 {
    padding-top: 40px;
    padding-bottom: 50px;
  }

  footer {
    text-align: center;
    background-color: lightskyblue;
  }

  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 60px;
      left: 0;
      width: 100%;
      flex-direction: column;
      background-color: #333;
    }

    .nav-links.active {
      display: flex;
    }

    .burger {
      display: flex;
    }

    .img2 {
        width: 90%;
        height: auto;
    }
  }
