@import url("https://fonts.googleapis.com/css2?family=JetBrains:wght@400;700+Mono&family=Open+Sans:wght@400;700&display=swap");

.langs {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 24px 0;
}

.langs__lang {
  width: 48px;
  height: 48px;
  border-radius: 10px;
}

.langs__lang--active {
  color: white;
  background-color: hsl(33, 100%, 48%);
}

.demo {
  width: 800px;
  max-width: 100%;
  margin: 50px auto;
  padding: 1px 10px 10px 10px;
  box-sizing: border-box;
  font-family: "Open Sans", sans-serif;
  border-radius: 3px;
  background-color: #f5f5f5;
}

.demo code {
  font-family: "JetBrains Mono", monospace;
}

.demo__info {
  padding: 0 6px;
}

.demo__info code {
  font-weight: 700;
  font-size: 15px;
}

.demo pre {
  margin: -30px 0 -20px 0;
  box-sizing: border-box;
  border-radius: 10px;
  overflow: auto;
}

.demo pre code {
  font-size: 13px;
  border-radius: 10px;
}
