.footer {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    background-color: rgb(24, 64, 128);
    color: #e6e6e6; 
    padding: 0.5rem 0;
}
.footer__link {
    color: #ffffff;
    font-weight: bold;
    letter-spacing: 1px;
}
.footer__link:hover {
    color: #fff;
    text-decoration: none;
}
.footer__link span {
  color: rgb(81, 158, 147);
}
.footer__list {
    display: flex;
    gap: 0.8rem;
    list-style-type: none;
    align-items: center;
    justify-content: center;
    margin: unset;
    padding: unset;
}
.footer__item a{
    color: inherit; 
    text-decoration: none;
    transition: all 0.3s;
}
.footer__item a:hover{
    color: #abe7e9;
}

@media (min-width: 992px) {
  .footer {
    text-align: left;
  }
}