.logo {
  max-width: 100%;
  height: 10vh;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

* {
  box-sizing: border-box;
}

.footer {
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
  position: fixed;
  bottom: 0;
  width: 100vw;
  align-content: center;
}

.footer a {
  /* float: left; */
  color: white;
  text-align: center;
  padding: 12px;
  text-decoration: none;
  font-size: 3vh;
  /* line-height: 25px; */
  border-radius: 4px;
  transition: ease 0.3s;
}

.footer a.logo {
  font-size: 25px;
  font-weight: bold;
}

.footer a:hover {
  background-color: white;
  color: #2e2e2e;
  transition: ease 0.3s;
}

.footer a.active {
  background-color: dodgerblue;
  color: white;
}

.footer-right {
  float: right;
}

@media screen and (max-width: 500px) {
  .footer a {
    float: none;
    display: block;
    /* text-align: left; */
  }

  .footer-right {
    float: none;
  }
}

.homenavico {
  display: inline-block;
  padding: 1rem;
  color: white;
  font-size: 3vh;
  transition: 0.3s ease;
}

.homenavico:hover {
  color: #2e2e2e;
  background: white;
  border-radius: 8px;
  transition: 0.3s ease;
}
