/*  */
/* Le footer (footer.php)*/
/*  */

footer {
    background-color: rgb(31, 61, 102);
    flex-basis: 100vw;
    height: 8vh;
    margin: auto;
    text-align: left;
    padding: 10px;
}

.copyright {
    color: black;
    position: absolute;
    margin: 10px;
    font-size: 1em;
    font-weight: bold;
    width: 50vw;
}

.social-icons {
    text-align: right;
}

.social-icons li {
    position: relative;
    right: 10px;
    display: inline-block;
    margin: 10px 10px 10px 0px;
    font-size: 20px;
    transition: 0.5s;
    border-radius: 50%;
    list-style-type: none;
}

.social-icons a {
    display: block;
    color: #fff;
}

#footer-discord {
    padding: 10px 8px 10px 8px;
}

#footer-instagram {
    padding: 10px 12px 10px 12px;
}

#footer-youtube {
    padding: 10px 9px 10px 9px;
}

.social-icons li:nth-child(1) {
    background: #5460e6;
}

.social-icons li:nth-child(2) {
    background: #e1306c;
}

.social-icons li:nth-child(3) {
    background: #CD201F;
}

.social-icons li:hover {
    transform: translateY(-3px);
    box-shadow: 0 3px 3px rgba(0, 0, 0, .3);
}