body {
    margin: 0;
    padding: 0;
    background: #000;
    color: #fff;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    text-align: center;
}

.header {
    margin-bottom: 20px;
}

.logo {
    width: 500px;
}

.content {
    font-size: 18px;
}

.languages {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.language {
    text-align: center;
    width: 150px;
}

.language img {
    width: 100px;
    height: 100px;
}

.language span {
    display: block;
    margin-top: 10px;
}
