footer {
  position: absolute;
  bottom: 1vh;
  left: 17.5vw;
  width: 60vw;
  min-height: 2vh;

  font-size: 0.8em;

  display: block;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;

  padding: 1vh 2vw 1vh 2vw;
  margin-bottom: 1vh;
}

@media only screen and (max-width: 767px) {
  /* phones */
  footer {
    display: flex;    
    left: 2vw;
    width: 90vw;
    font-size: 0.6em;
    margin-bottom: 2vh;
  }
}

footer .footer-top {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-around;
  align-items: center;
}

footer .footer-top div {
  max-width: 35%;
  line-height: 1.4em;
}

@media only screen and (max-width: 767px) {
  footer .footer-top{
    flex-wrap: no-wrap;
  }
  footer .footer-top div {
    width: max-content;
  }
}

footer a:hover {
  /* color: #e5b4d4; */
  font-style: italic;
}
