/* Hide radio buttons */
.lang-switcher input {
  display: none;
}

/* Hide all paragraphs by default */
.content p {
  display: none;
}

/* Show matching language */
#en:checked~.content p[lang="en"],
#fr:checked~.content p[lang="fr"],
#es:checked~.content p[lang="es"] {
  display: block;
}

/* Optional styling */
.buttons label {
  cursor: pointer;
  padding: 5px 10px;
  border: 1px solid #ccc;
  margin-right: 5px;
}

.buttons label:hover {
  background: #eee;
}

input:checked+input+input~.buttons label[for="en"],
#fr:checked~.buttons label[for="fr"],
#es:checked~.buttons label[for="es"] {
  background: #ddd;
}

.lang-switcher {
  display: grid;
  place-items: center;
  font-family: Arial, sans-serif;
}