footer{
  background-color: #161616;
}

.fixed-footer{
  width: 100vw;
  height: 30vh;
  background: #161616;
  position: fixed; left: 0; bottom: 0;
  z-index: -100;
}

.footer-container{
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
  align-items: center;
  display: flex;
  height: 90%;
  justify-content: end;
}

.footer-container span{
  color: #F2F1ED;
}

.footer-links{
  font-family: 'Satoshi', sans-serif;
  font-weight: 200;
  font-size: 1.2rem;
  color: #F2F1ED;
  text-decoration: none;
}

.footer-links:hover{
  text-decoration: underline;
  color: #771100;
}

.footer-socials{
  background-color: #161616;
  padding: 0.5rem;
  border-radius: 100%;
  border: none;
}

.footer-creds{
  font-family: 'Satoshi', sans-serif;
  font-weight: 200;
  font-size: 0.8rem;
  color: #787878;
}


ul li {
  list-style: none;
}

ul li a {
  width: 50px;
  height: 50px;
  background-color: #F2F1ED;
  text-align: center;
  line-height: 50px;
  font-size: 25px;
  margin: 0 10px;
  display: block;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  border: 3px solid #F2F1ED;
  z-index: 1;
}

ul li a .icon {
  position: relative;
  color: #262626;
  transition: .5s;
  z-index: 3;
}

ul li a:hover .icon {
  color: #F2F1ED;
  transform: rotateY(360deg);
}

ul li a:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: #dd4b39;
  transition: .5s;
  z-index: 2;
}

ul li a:hover:before {
  top: 0;
}

ul li:nth-child(1) a:before{
  background: #3b5999;
}

.social-icons{
  display: flex;
  flex-direction: row;
}

@media screen and (max-width: 393px){
  .footer-links{
    font-size: 0.8rem;
  }

  .footer-creds{
    font-size: 0.5rem;
  }

  ul li a{
    width: 25px;
    height: 25px;
    line-height: 20px;
    font-size: 15px;
  }

}