
.footer{
  width: 100%;
  display: flex;
  justify-content: space-around;
  border-top: 1px solid black;
  flex-direction: column;
}

.footer-right, .footer-left{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 20%;
  margin-top: 3vh;
}

.footer-left{
  font-family: gotham-htf;
}

.footer-right > a{
  text-decoration: none;
  font-family: gotham-htf;
  color: Black;
  margin: 0.5vh;

  /* dummy border to prevent shifting with the hover */
  border-bottom: 1px #ffffff00 solid;
}

/* .footer-right > a:hover{
  border-bottom: 1px solid black;
} */

.footer-top{
  width: 100%;
  display: flex;
  justify-content: space-around;
}

.footer-bottom > *{
  margin: 1vh;
  color: black;
  text-decoration: none;
  /* dummy border to prevent shifting with the hover */
  border-bottom: 1px #ffffff00 solid;
}

.footer-bottom{
  display: flex;
  justify-content: center;
  margin-top: 2vh;
  margin-bottom: 2vh;
}

.hover-underline-animation-footer {
  display: inline-block;
  position: relative;
  padding-bottom: 3px;
}

.hover-underline-animation-footer::after {
  content: '';
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: 0;
  background-color: black;
  transform-origin: bottom left;
  transition: transform 0.2s ease-out;
}

.hover-underline-animation-footer:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@media all and (max-width: 1200px) {
  .footer-top{
    flex-direction: column;
    align-items: center;
  }

  .footer-left, .footer-right{
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 90vw;
  }

  .footer-left > *, .footer-right > *{
    font-size: 150%;
    text-align: center;
  }

  .footer-bottom > * {
    font-size: 150%;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: center;
    margin-top: 1.5vh;
  }
}
