@import url("https://fonts.googleapis.com/css?family=Fira+Code:wght@400;700&display=swap");

html {
  box-sizing: border-box;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

body {
  background: #fff;
  color: #333;
  margin: 0;
  padding: 0;
  font-family: "Alegreya Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
}

a {
  color: #ff2903;
}

h1, h2, h3 {
  font-family: "Exo 2", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  color: #fff;
}

h2 {
  color: #008199;
  font-size: 1.75rem;
  margin: 0 0 1rem 0;
}

h3 {
  color: #008199;
  font-size: 1.25rem;
  margin: 0.25rem 0;
}

header {
  background: #1e1e1e;
  width: 100%;
  padding: 1.5rem 0;
  margin-bottom: 2rem;
}
header *, #content {
  margin: 0 auto;
  max-width: 800px;
}

#content>div {
  margin-bottom: 1.25rem;
}

#content>div:nth-child(1) {
  background-color: #f8f8f8;
  padding: 1rem;
  border-radius: 0.375rem;
}


pre {
  /* font-family: "Fira Code"; */
  font-family: ui-monospace,"Cascadia Mono","Segoe UI Mono","Liberation Mono",Menlo,Monaco,Consolas,monospace;
  margin: 0;
  padding: 1em;
  border-radius: 0 0 0.5em 0.5em;
}

code, textarea {
  /* font-family: "Fira Code"; */
  /* font-family: ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace; */
  /* font-family: Consolas,Monaco,Andale Mono,Ubuntu Mono,monospace; */
  /*https://meta.stackexchange.com/questions/364048/we-are-switching-to-system-fonts-on-may-10-2021*/
  /* font-family: ui-monospace,"Cascadia Mono","Segoe UI Mono","Liberation Mono",Menlo,Monaco,Consolas,monospace; */
  font-size: 1rem;
}

textarea {
  padding: 1em;
}

/* .code-title-bar {
  display: flex;
  gap: 1em;
  font-family: "Fira Code";
  font-size: 1rem;
  color: #fff;
  background: #374151;
  border-radius: 0.5em 0.5em 0 0;
  padding: 1em;
}

.code-title-bar div:nth-child(1) {
  width:20px;
  height:20px
}

.code-title-bar div:nth-child(2) {
  flex: 1;
}

.line {
  padding-bottom: 0.5em;
  display: inline-block;
} */

#toolbar {
  display: flex;
  gap: 2rem;
}

textarea {
  word-break: break-all;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
}

/* Custom select boxes */
.select,
.select * {
  margin: 0;
  padding: 0;
  position: relative;
  box-sizing: border-box;
}
.select {
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  display: inline-block;
}
.select select {
  font-family: "Alegreya Sans", sans-serif;
  font-size: 14px;
  font-weight: normal;
  max-width: 100%;
  /* padding: 8px 24px 8px 10px; */
  padding: 0.25em 1.5em 0.25em 0.5em;
  border: none;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select select:active,
.select select:focus {
  outline: none;
  box-shadow: none;
}
.select:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  width: 0;
  height: 0;
  margin-top: -2px;
  border-top: 5px solid #ced4da;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
}

