.clickable-div {
    transition: transform 0.3s ease;
}

.clickable-div:hover {
    transform: scale(1.05);
}

.clickable-div-bg {
    transition: transform 0.3s ease;
}

.clickable-div-bg:hover {
    transform: scale(1.025);
}

.main-container {
    background-size: cover;
    background-position: center;
}

.head-container {
    background-size: cover;
    background-position: center;
}

.text-container {
    border: 1px solid #ccc;
    background-color: rgba(0, 0, 0, 0.6); /* Dark transparent background */
    color: white; /* Ensure text is readable */
    padding: 10px;
    border-radius: 5px;
}

a {
    text-decoration: none;
    color: inherit;
}



