/* Add this CSS for the "Meet the Developer" section */
.developer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 20px;
    margin: 20px auto;
    max-width: 800px;
}

.developer {
    margin-bottom: 20px;
}

.developer img {
    border-radius: 10px; /* Rounded corners */
    width: 300px;
    height: 300px;
}
#about-clickstat {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .developer-container {
        flex-direction: row;
        justify-content: center;
    }

    .developer {
        margin-right: 20px;
        margin-bottom: 0; /* Remove margin bottom for desktop view */
    }
}

