/* BODY ja 체ldine taust */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: orange;
}
<script>
console.log(document.querySelectorAll('.language-switch').length);
</script>
/* HEADER ja pilt */
header {
    text-align: center;
    background-color: #e67e22; /* tumedam oran탑 */
    padding-top: 15px;
    padding-bottom: 5px;
}

header img {
    width: 80%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    border-radius: 10px; /* ümarad nurgad */
}

/* Pealkiri */
header h1 {
    margin: 25px 0;
    font-weight: bold !important;  /* teeb teksti paksuks */
}

/* Keelevaliku nupud */
.language-switch {
    margin-top: 10px;
}

.language-switch .lang-btn {
    display: inline-block;
    padding: 5px 10px;
    margin: 0 5px;
    background-color: white;
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    border: 1px solid #e67e22;
    transition: 0.2s;
}

.language-switch .lang-btn:hover {
    background-color: #e67e22;
    color: white;
}

.language-switch .active {
    background-color: #e67e22;
    color: white;
}

/* Blogi postitused */
.container {
    max-width: 800px;
    margin: auto;
    padding: 20px;
}

.post {
    background: white;
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 10px;
}

.post h2 {
    margin-top: 0;
}

.date {
    color: gray;
    font-size: 14px;
}