*{
    padding: unset;
    margin: unset;
    box-sizing: border-box;
    /* fonts  */
  font-family: "IBM Plex Sans Arabic", sans-serif;
  font-weight: 200;

}
:root {
    --dark: #111;
    --light: #eee;
}

body {
    background-color: var(--dark);
}
footer{
    position: absolute;
    bottom: 0;
    width: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    height: 4rem;
}
footer .links{
    display: flex;
    flex-direction: row-reverse;
    gap: 2rem;
}
footer .links .link {
    all: unset;
    color: var(--light);
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}
footer .links .link:hover{
    opacity: 0.5;
    text-decoration: underline;
}
