h2.page-title {
    color: #4b1616;
    font-size: 20px;
    text-align: center;
    margin-top: 5px; 
    margin-bottom: 1px; 
    animation: squiggly-anim 0.45s linear infinite;
    transition: filter 0.5s ease;
}
.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    padding: 40px;
    box-sizing: border-box;
}

.column {
    flex: 1;
    max-width: 25%;
    box-sizing: border-box;
    padding: 10px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.1s ease; 
}

.column:nth-child(1) {
    transition-delay: 0.2s;
}

.column:nth-child(2) {
    transition-delay: 0.4s;
}

.column:nth-child(3) {
    transition-delay: 0.6s;
}

.column:nth-child(4) {
    transition-delay: 0.8s;
}

.column img {
    width: 70%;
    height: auto;
}

.column p {
    font-size: 13px;
    color: #472c26;
    display: block;
}

.column a {
    display: inline;
    font-size: 18px;
    text-decoration: none;
    color: #b34237;
    font-weight: bold;
    transition: color 0.3s;
}

.column a:hover {
    color: #d7918a;
}

.column:hover {
    transform: scale(1.05); 
}

.visible {
    opacity: 1;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        align-items: center;
    }

    .column {
        max-width: 80%;
        margin-bottom: 20px;
    }

    .column img {
        width: 90%;
        height: auto;
    }

    h2.page-title {
        font-size: 1.5em;
    }

    .column p {
        font-size: 16px;
    }

    .column a {
        font-size: 16px;
    }
}


.content {
    position: relative;
    display: flex;
   justify-content: center;
    width: 100%;
    z-index: 1;
    padding: 10px;
    opacity: 1;
    transition: opacity 0.5s ease;
}
