/* Add this CSS at the end of your existing styles */

/* Adjust container max-width for smaller screens */
@media only screen and (max-width: 600px) {
    .container {
        max-width: 90%;
    }
}

/* Make the mandala container responsive */
/* Modify the CSS for .mandala class */
.mandala {
    width: 60%; /* Reduce width to 60% */
    padding-bottom: 60%; /* Maintain aspect ratio based on reduced width */
    position: relative;
    margin: auto; /* Center align horizontally */
}

.mandala img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%; /* Make images fill the container */
    height: 100%; /* Make images fill the container */
}

.mandalabutton {
    width: 120px;
    height: 40px;
    background-color: #007BFF;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    margin-right: 10px;
}

.mandalabutton:hover {
    background-color: #0056b3;
}

.mandalabutton-container {
    margin-bottom: 20px;
}

