.footer {
    background-color: #FFF5E5;
    padding: 20px;
    text-align: center;
    font-family: 'flame', sans-serif;
    position: sticky;
}

.footer-top img {
    height: 5vw;
}

.footer-middle ul {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.footer-middle ul li {
    display: inline-block;
    margin: 0 10px;
    cursor: pointer;
}

.footer-middle ul li a {
    font-size: 2rem;
    color: inherit;
    transition: transform 0.3s ease;
}

.footer-middle ul li a:hover {
    transform: scale(1.2);
}

.fa-x-twitter {
    color: #000;
}

.fa-youtube {
    color: #FF0000;
}

.fa-instagram {
    color: #E1306C;
}

.fa-facebook {
    color: #1877F2;
}

.footer-bottom {
    margin-top: 10px;
    font-size: 0.9rem;
}


@media only screen and (max-width: 450px) {
    .footer-top img {
        height: 15vw;
    }
}