/* Styling the image */
.image-map {
border-radius: 15px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
transition: transform 0.3s ease-in-out;
}
.image-map:hover {
transform: scale(1.05);
box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}
/* Styling the clickable text section */
.telegram-text {
text-align: center;
font-family: "Arial", sans-serif;
margin-top: 20px;
}
.telegram-text p {
color: #333;
font-size: 1.1rem;
margin: 5px 0;
}
/* Styling the join link */
.join-link {
display: inline-block;
padding: 10px 20px;
margin-top: 10px;
background-color: #0088cc;
color: #fff;
text-decoration: none;
border-radius: 25px;
font-weight: bold;
transition: background-color 0.3s ease-in-out;
}
.join-link:hover {
background-color: #005f99;
}