* {
  padding: 0;
  margin: 0;
}

header {
  width: 100%;
  margin-bottom: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

a {
  text-decoration: none;
}

.logo-img {
  width: 30%;
  height: 80%;
  margin-top: 10px;
}
.snl {
  font-size: 20px;
  height: 100%;
  padding-top: 23px;
}

.logo-wimnet {
  width: 70%;
}
.snl-img {
  margin-top: 10%;
  width: 70%;
  margin-left: 20%;
}
.logo {
  display: flex;
  width: 70%;
  justify-content: space-around;
  margin-bottom: 20px;
}

.nav-bar {
  background-color: #f8f9fa;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 5px 0 5px 0;
}

.middle-nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap
}

.middle-nav-bar a {
  text-decoration: none;
  color: black;
}

.footer {
  background-color: #f8f9fa;
  margin-top: 30px;
  width: 100%;
  display: flex;
  justify-content: center;
  padding-top: 3px;
  padding-bottom: 10px;
}
.inside-footer {
  display: flex;
  background-color: #f8f9fa;
  width: 90%;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media (max-width: 800px) {
  .middle-nav-bar {
    display: flex;
    flex-wrap: wrap;           /* allows items to wrap instead of overlap */
    justify-content: center;   /* centers items when wrapped */
    gap: 1rem;                 /* spacing between items */
    flex-shrink: 0;            /* prevents nav from squishing */
  }
  h1 {
    font-size: 26px; /* smaller font for smaller screens */
  }
}
