html,
body {
  height: 100%;
}

/* ******************* NAVBAR ******************* */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  background-color: #91ba91;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  position: relative; /* or position: fixed/absolute */
  z-index: 1;
}

.navbar-buttons {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  padding-right: 10rem;
  gap: 2rem;
}

.nav-btn {
  font-size: 1.4rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
  color: #ffffff;
  text-decoration: none;
}

.nav-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  vertical-align: middle;
}

.nav-btn svg,
.logout-btn svg {
  height: 2.4rem;
  width: 2.4rem;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background-color: #f1efe7;
  color: black;
  cursor: pointer;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.nav-btn:hover svg {
  fill: black;
}

.logout-btn {
  background-color: #f1efe7;
  color: #000000;
  transition: all 0.3s ease;

  visibility: hidden;
  pointer-events: none;
}

.logout-btn svg {
  transition: all 0.3s ease;
}

.logout-btn:hover {
  color: #ffffff;
  background-color: #577057;
  cursor: pointer;
  transform: scale(1.05) translateY(-3px);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15);
}

.logout-btn:hover svg {
  fill: #ffffff;
}

/* ******************* MAIN CONTENT ******************* */
.main-content {
  background-color: #f1efe7;
  min-height: 100%;
  padding: 2.5rem 3rem;
}

/* ******************* FOOTER ******************* */
footer {
  display: flex;
  background-color: #91ba91;
  height: 15rem;
  align-items: center;
  justify-content: space-around;
}

footer .partners {
  color: white;
  font-size: 2.4rem;
  font-weight: bold;
}

footer img {
  height: 10rem;
  width: 10rem;
  border-radius: 50%;
  cursor: pointer;
}

footer .copyright {
  color: white;
  font-size: 1.6rem;
}
