/* General body styling */
body {
    font-family: Arial, sans-serif;
    margin: 40px;
    background-color: #f4f4f4;
    color: #333;
    text-align: center;
}

/* Flexbox container for languages */
.languages {
    display: flex;
    justify-content: center;
    gap: 50px; /* Adds space between the languages */
    align-items: center;
    margin-top: 40px;
}

/* Individual language section */
.language {
    text-align: center;
}

/* Styling for the icons */
.icon {
    display: block;
    margin-top: 10px;
    width: 100px; /* Adjust as necessary */
    height: auto;
}
