Salut, tout est dans le titre, mon footer en css veut pas être prit en compte et ça m'embête un peu car je ne peux pas modifier son fond par exemple ^^
et mon css
j'ai défini une couleur pour mon body{ et c'est celui-là qui prends sur celui du footer :
une idée de pourquoi ça fonctionne pas ?
      
      
    
    <footer>
        <div class="middle">
            <a class="btn" href="#">
                <i class="fab fa-facebook-f"></i>
            </a>
            <a class="btn" href="#">
                <i class="fab fa-twitter"></i>
            </a>
            <a class="btn" href="#">
                <i class="fab fa-pinterest"></i>
            </a>
            <a class="btn" href="#">
                <i class="fab fa-instagram"></i>
            </a>
        </div>
    </footer>
et mon css
footer{
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: #f1f1f1;
    max-width: auto;
    height: 100%;
    margin: 0px;
    padding: 0px;
    line-height: 1;
}
.middle{
    position: absolute;
    transform: translateY(50%);
    width: 100%;
    text-align: center;
    
}
.btn{
    display: inline-block;
    width: 90px;
    height: 90px;
    background: #f1f1f1;
    margin: 10px;
    border-radius: 30%;
    box-shadow: 0 5px 15px -5px #00000070;
    color: #3498db;
    overflow: hidden;
    position: relative;
}
.btn i{
    line-height: 90px;
    font-size: 26px;
    transition: 0.2s linear;
}
.btn:hover i{
    transform: scale(1.3);
    color: #f1f1f1;
}
.btn::before{
    content: "";
    position: absolute;
    width: 120%;
    height: 120%;
    background: #3498db;
    transform: rotate(45deg);
    left: -110%;
    top: 90%
}
.btn:hover::before{
    animation: aaa 0.7s 1;
    top: -10%;
    left: -10%;
}
@keyframes aaa{
    0%{
        left: -110%;
        top: 90%;
    }50%{
        left: 10%;
        top: -30%;
    }100%{
        top: -10%;
        left: -10%;
    }
}
j'ai défini une couleur pour mon body{ et c'est celui-là qui prends sur celui du footer :
body{
    font-family: Sunday, sans-serif;
    margin: 0px;
    padding: 0px;
    background-image: url(../img/marry.png);
    background-color: #555555;
    background-repeat: no-repeat;
    background-size: 100%;
    max-width: auto;
    height: 100%;
    line-height: 1;
    
}
une idée de pourquoi ça fonctionne pas ?