body {
    font-family: 'Inter', sans-serif;
    background-color: #000;
    color: #fff;
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 25px;
}

.language-buttons {
    display: flex;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 20px;
}

.language-buttons button {
    background-color: #333;
    color: white;
    border: none;
    padding: 5px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: background-color 0.3s;
}

.language-buttons button:hover {
    background-color: #555;
}

h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center
}

.content {
    font-size: 16px;
}
.content h3 {
    font-size: 24px;
}

.content span {
    font-weight: 800;
}

.content p {
    margin-bottom: 15px;
}

