.Footer{
    background-color: var(--ligther-color);
    color: var(--contrast-color);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px;
    margin-top: 150px;
}
.ImgProfiles{
    display: flex;
    gap: 15px;
}
.ImgProfiles img {
    width: 45px;
    height: 45px;
    border-radius: 100%;
}
.Info-page-title{
    font-family: var(--gill_sans-font);
}
.Info-page-text{
    font-family: var(--poppins-font);
}
a{
    color: inherit;
    text-decoration: none;
}
a:hover{
    color: var(--darker-color);
}

.Footer div {
    margin: 10px 0px;
}

@media only screen and (min-width: 830px) {
    .Footer {
        flex-direction: row;
        justify-content: space-around;
        text-align: left;
    }
    .Footer div {
        margin: 0px 10px;
    }
    .Creators{
        text-align: center;
        margin-bottom: 5px;
    }
} 
