/* Add your CSS styles here */
.languages {
    text-align: center;
}

a {
    display: inline-block;
    margin: 10px;
    padding: 10px 20px;
    background-color: #ccc;
    border: 2px solid #333;
    font-size: 24px;
    text-align: center;
    text-decoration: none;
    color: #333;
    border-radius: 10px;
    transition: background-color 0.3s;
}

a:hover {
    background-color: #333;
    color: #fff;
}
