
/* 8 - Footer */ 
.footer {
    position: relative;
    margin: 20vh 0 0% 0;
    padding-bottom: 0%;
    text-align: center;
}

.footer-container {
    position: relative;
    display: inline-block;
    width: 100%;
    padding-top: 5%;
}

.footer-container h1 {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    color: white;
    text-align: center;
    padding: 10px 20px;
    border-radius: 10px;
    z-index: 10;
    hyphens: none !important;
}

.footer-container img {
    width: 50%; 
    height: auto;
    object-fit: cover;
    object-position: 50% 50%;
    filter: grayscale(100%);
    display: block;
    margin: 0 auto;
    
    box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.6);
}

.advertisement{
    text-align: center;
    text-decoration: underline;
    margin-top: 1%;
}

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

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

.footer-image img{
    height: auto;
    width: clamp(250px,20%,25%);
    border-radius: 25px;
    transition: all 0.2s ease-in-out;
}

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

@media (max-width: 768px) {
  .footer-image img {
    width: clamp(230px,50%,60%);
  }
}