/* .image-container {
    width: 80%;
    max-width: 800px;
    margin: 40px auto;
    opacity: 1;
     transform: translateY(50px);
    display: flex;
    justify-content: center;
} */

/* .responsive-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); 
} */

/* @media (max-width: 768px) {
    .image-container {
        width: 90%;
    }
}

@media (max-width: 480px) {
    .image-container {
        width: 95%;
    }
} */

/* body {
    background-color: #f4f4f4;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding: 20px;
} */

.main-diagram {
    position: relative;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
    /* Center the diagram */
}

.main-diagram img {
    max-width: 100%;
    height: auto;
}

.blooms-taxonomy {
    position: absolute;
    bottom: 5%;
    right: -10%;
    width: 250px;
    /* Adjust this value to make the image smaller */
    max-width: 25%;
    /* Responsive sizing */
}

@media (max-width: 768px) {
    .blooms-taxonomy {
        width: 100px;
        bottom: -5%;
        right: -5%;
    }
}

@media (max-width: 480px) {
    .blooms-taxonomy {
        width: 80px;
        bottom: 0;
        right: 0;
    }
}