  #footer_button {
    background: white;
    border: 2px solid #D34338;
    border-radius: 15%;
    margin: 1%;
    text-align: center;
    height: 80%; /* Dodaj wysokość na 100% */
    display: flex; /* Ustaw flexbox dla wyśrodkowania treści */
    align-items: center; /* Wyśrodkuj tekst w pionie */
    justify-content: center; /* Wyśrodkuj tekst w poziomie */
    margin-top: 0;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: bold;
  }
  
  #footer_logo {
    border-radius: 50%;
    border: 2px solid #f8a723;
    background: white;
    width: 85px;
    height: 85px;
    display: flex; /* Ustaw flexbox dla wyśrodkowania obrazu */
    align-items: center; /* Wyśrodkuj w pionie */
    justify-content: center; /* Wyśrodkuj w poziomie */
    padding: 0;
  }
  #footer_button:hover {
    border-color: #0959a2;
  }
  .footer-link{
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    color: black;
  }