/*---------------------------------------*\ 
    AUTHOR: A.M.M. Elsayed   
    * ALL RIGHTS RESERVED *
\*---------------------------------------*/
*{
    margin: 0;
    padding: 0;
    list-style: none;
    text-decoration: none;
  }

footer {
    width: 100%; /* To take all width of the page */
    height: 60px;
  
    display: flex;
    flex-direction: row; /* Items are placed left to right. */
    justify-content: space-evenly;   /*  Aligns flex items along the main axis (defined by flex-direction). */
    align-items: center; /*  Aligns flex items along the cross axis: */
    background-color: #101010;  /* */
    box-shadow: 0 0 30px rgba(0,0,0,0.5); /* border shadows */
}

.inner-footer {
    width: 1000px;
    height: 100%;
    padding: 0px 20px;
    display: flex;
    flex-direction: row; /* Items are placed left to right. */
    justify-content: space-between;   /*  Aligns flex items along the main axis (defined by flex-direction). */
    align-items: center; /*  Aligns flex items along the cross axis: */
  }

footer p {
    color: white;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 10;
}

footer p a {
    color: white;
}

.social-links {
    display: flex;
    flex-direction: row; /* Items are placed left to right. */
    justify-content: space-evenly;   /*  Aligns flex items along the main axis (defined by flex-direction). */
    align-items: center; /*  Aligns flex items along the cross axis: */
    gap: 15px;
}

.social-links a img {
    width: 20px;
    height: 20px;
    filter: brightness(0) saturate(100%) invert(1); /* to make logo white*/
    transition: width 0.2s ease, height 0.2s ease;
}

.social-links a img:hover {
    width: 23px;
    height: 23px;
}

@media screen and (max-width: 450px) {

    .social-links {
        gap: 8px;
    }

    .social-links a img {
        width: 15px;
        height: 15px;
    }

    .social-links a img:hover {
        width: 18px;
        height: 18px;
    }

    footer p {
        font-size: 9px;
    }
  }


