html {
  font-size: 16px;
}

.ac-nav, .ac-footer.logged-in {
  background-image: linear-gradient(to right, #0094ba, #00b0dc);
}

.ac-nav ul, .ac-footer ul {
  list-style-type: none;
  padding-left: 0;
}

.ac-footer {
  background-image: none;
  background-color: slategray;
  min-height: 200px;
  position: relative;
  margin-top: 2rem;
  padding-top: 2rem;
  padding-bottom: 2rem;
  line-height: 1.5;
  color: white;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
}
.ac-footer-heading {
  color: white;
  font-weight: normal;
  font-size: clamp(1rem, 1vw, 1.2rem);
  padding-top: 1rem;
  padding-bottom: 0.5rem;
}

.ac-footer-item {
  padding-top: 0.3rem;
  padding-bottom: 0.3rem;
}
.ac-footer-item a {
  color: #f3eeee;
  font-weight: normal;
  font-size: clamp(0.8rem, 1vw, 0.9rem);
  text-decoration: none;
}
.ac-footer-item a:hover {
  color: white;
}

.ac-footer-icon {
  font-size: 1.5rem;
  color: white;
  padding: 0.25rem;
}

.ac-nav {
  color: white;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
}
.ac-nav ul {
  display: flex;
}
.ac-nav .ac-nav-item {
  padding-left: 0.7rem;
  padding-right: 0.7rem;
}
.ac-nav .ac-nav-item a {
  color: white;
  font-weight: normal;
  font-size: clamp(1rem, 1vw, 1.1rem);
  text-decoration: none;
}
.ac-nav .user-box {
  background: white;
  padding: 5px 20px 5px 35px;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  text-align: center;
}
.ac-nav .user-box .user-name {
  color: black;
  padding: 5px;
  max-width: 10rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.ac-nav .user-box .logout-btn {
  background: transparent;
  border: none;
  color: #00b0dc;
  padding: 0;
}
