.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #f5f5f5;
    text-align: center;
}

#load{
    width:100%;
    height:100%;
    position:fixed;
    z-index:9999;
    background:url("/img/blocks.gif") no-repeat center center rgba(0,0,0,0.25)
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-text {
    animation: fadeIn 2s ease-in-out;
    font-size: 2rem;
    color: #333;
    text-align: center;
    margin-top: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 24px;
    background-color: darkgreen; /* Vibrant color */
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #0d6efd;
    transform: scale(1.05);
}


