body, html {
    height: 100%;
    font-family: Trebuchet, Verdana, sans-serif;
    font-weight: bold;
}

.bg {
    background-image: url('./background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    text-align: center;
}

.page-title {
    margin: 0;
    padding: 10px 0;
    font-size: 3em;
    display: block;
    width: 100%;
    justify-content: center;
    text-align: center;
}

#nav {
    position: sticky;
    top: 0;
    overflow: hidden;
    justify-content: center;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

.menu li a {
    list-style: none;
    text-decoration: none;
    color: black;
    margin: 0 2px;
    padding: 14px 20px  /* Adjusted padding for better spacing */;
    display: block;
    justify-content: center;
    transition: all 0.15s ease;
}

.menu li a:hover {
    color: #ffffff;
    background-color: rgb(0, 0, 0);
}