/* ================================================================= */
/* ========================= SIGNATURE ============================= */
/* ================================================================= */
.advertisement{
    text-align: center;
    text-decoration: underline;
    margin-top: 5%;
}

.advertisement a {
    text-decoration: none;
    color: black;
}
.advertisement a:hover {
    color: blue;
}

.footer-image{
    margin: 0 0 1% 0;
    text-align: center;
}

.footer-image img{
    width: 300px;
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
}

.footer-image img:hover{
    transform: scale(1.3);
}

@media (hover: none) and (pointer: coarse), (max-width: 768px) {
    .advertisement .footer-image{
        margin-top: 5rem;
    }

    .footer-image img{
        width: 320px !important;
    }
}