.navbar {
  position: relative;

  width: 100%;

  top: -10px;
  z-index: 100;
}

.hamburger {
  display: none;
  font-size: 5vh;
  color: green;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  margin: 0 auto;

  padding: none;
}

.nav-text{
  font-family: pixelify sans, Arial;
  font-weight: 500;
  font-size: 2vw;
  text-align: center;
  flex: 1;
  text-decoration: none;

  color: black;
  transition: color 0.3s ease;
  transition: transform 0.3s ease, color 0.3s ease;
}

.nav-content-wrapper {
  padding-top: 5vh;
  display: flex;
  align-items: center;
  justify-content: space-between; 
  width: 100%;
}

.nav-item-group {
  display: flex;
  align-items: center;
  gap: 40px;
}




.nav-text-about {
    color: rgb(0, 0, 0);
}

.nav-text.dark{
  color: white;
}

.nav-text.dark {
  color: white;
    background-color: transparent;

}

.nav-text:hover{
  color: rgb(243, 230, 41);
  text-shadow: 4px 4px 25px rgba(255, 118, 44, 0.8);
  transform: scale(1.05);
}


.footer {
  position: relative; 
  margin-top: 15vh;
}

.footer-image {
  position: relative;
  display: block;
  width: 100%;
  background-image: url("home images/footer.gif");
}

.footer-image {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1193 / 209;
  
  background-image: url("home images/footer.gif");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;

  bottom: -30px;
}

.footer-image.dark {
  background-image: url("home images/dark footer.gif");
}


.footer-icon {
  width: 5vw; 
  fill: black;
}

.footer-icon.dark {
  width: 3vw; 
  fill: white;
  background-color: transparent;
}

.footer-icon-box {
  position: absolute;
  display: flex;

  bottom: -30px;
  left: 30px;

  gap: 20px;
  z-index: 2;


}


.rights {
  position: absolute;

  font-family: Pixelify Sans, Arial;
  font-size: 3vw;
  text-align: right;

  right: 30px;
  bottom: 5px;

  margin: 0;

  z-index: 10;
}

