table, th, td, caption {
    border: thin solid #a0a0a0;
  }

  table {
    border-collapse: collapse;
    border-spacing: 0;
    border-width: thin 0 0 thin;
    margin: 0 0 1em;
    table-layout: auto;
    max-width: 100%;
    background-color: lightgrey;
  }
  td {
    font-weight: normal;
    font-size: large;
    text-align: center;
    padding: .2em .5em;
    border-radius: .1em;
  }

  th {
    font-weight:bold;
    font-size: large;

  }
  th, caption {
    background-color: #f1f3f4;
    font-weight: 700;
  }

  .weatherinfo {
    background-color: skyblue;
    margin-top: 20px;
    text-align:center;
    border-radius: 15px;
    padding-bottom: 10px;
    padding-top: 10px;
    box-shadow: 2px 5px 2px darkgrey;
  }


  @media only screen and (max-width: 600px) {
    table {
        /* Adjust the table layout */
        width: 50%;
        margin-left: 0px;
        margin-right: 10px;
    }

    th, td {
        /* Reduce font sizes for smaller screens */
        font-size: small;
        /* Reduce padding to fit the available space */
        padding: 0.1em;
    }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
}

.burger-menu {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
  position: fixed;
  top: 35px;
  left: 10px;
  z-index: 10;
  background-color: rgba(51, 51, 51, 0.6);
  border-radius: 5px;
}

.burger-menu span {
  background: #fff;
  margin: 3px;
  width: 25px;
  height: 3px;
}

.nav-links {
  list-style: none;
  display: none;
  flex-direction: column;
  position: fixed;
  top: 60px;
  left: 20px;
  background-color: rgba(51, 51, 51, 0.9);
  padding: 10px;
  border-radius: 5px;
}

.nav-links li {
  margin: 10px 10px;
  text-align: left;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  font-size: 18px;
}

.nav-links.active {
  display: flex;
}

a {
  text-decoration: none;
  color: black;
}