* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background-image: url(background.jpg);
  background-repeat: no-repeat, repeat;
  background-size: cover;
}

/* Style the side navigation */
.sidenav {
  height: 100%;
  width: 175px;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #111;
  overflow-x: hidden;
}


/* Side navigation links */
.sidenav a {
  color: white;
  padding: 16px;
  text-decoration: none;
  display: block;
}
.sidenav h2 {
  color: white;
  padding: 16px;
  text-decoration: none;
  display: block;
}

/* Change color on hover */
.sidenav a:hover {
  background-color: #ddd;
  color: black;
}

/* Style the content */
.content {
  margin-left: 175px;
  padding-left: 20px;

}

.footer {
  position: fixed;
  bottom: 0;
  left: 175px; /* matches your sidenav width */
  right: 0;
  padding: 0px 20px;
  background-color: #111;
  color: white;
  text-align: right;
}