footer{
    margin: auto;
    padding: 5px 5px;
    background-color: rgb(160, 189, 216);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
   }
   .footer_text{
    width: 750px;
  }
  .bild_fot{
    width: 50px;
    max-width: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
   }
   .bild_fot image{
    width: 100%;
   }
   .link_foot{
    margin:auto
   }
    .link_foot ul{
    list-style: none;
    display: flex;
    gap: 20px;
   }
   .link_foot a{
    color: #3a0727;
    text-decoration: none;
    position: relative;
    padding: 3px;
   }
   .link_foot a:hover{
    color: #fcf9fb;
   }
   .link_foot a::after{
    content: '';
    height: 3px;
    width: 0%;
    background: #7a8ae4;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: 150ms ease-in-out;
   }
   .link_foot a:hover::after{
    width: 100%;
   }
  
   
