@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Jost", serif;
  outline: none;
}

:root {
  --bg-color: #051d18;
  --text-color: #a1cca5;
}

body::selection,
code::selection {
  background-color: var(--bg-color);
  color: var(--text-color);
}

body {
  background: var(--bg-color);
  color: var(--text-color);
  text-align: center;
  padding: 40px;
  padding-bottom: 0;
}

.container {
  max-width: 800px;
  margin: auto;
}

h1 {
  font-size: 35px;
  background: var(--text-color);
  border-radius: 10px;
  padding: 10px 20px;
  display: inline-block;
  color: var(--bg-color);
}

.section {
  padding: 20px;
  margin: 20px 0;
  text-align: left;
}

pre {
  background: var(--text-color);
  border-radius: 10px;
  color: var(--bg-color);
  font-weight: 600;
  padding-right: 22px;
  text-align: left;
  overflow-x: auto;
  font-size: 18px;
}

pre::-webkit-scrollbar {
  display: none;
}

.output-box {
  padding: 15px;
  border-radius: 10px;
  border: 2px solid var(--text-color);
  box-shadow: 5px 5px 0px var(--text-color);
  margin-top: 20px;
  color: var(--text-color);
  font-weight: 500;
  height: 57px;
}

.output-box-btn {
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  border-radius: 10px;
  border: 2px solid var(--text-color);
  box-shadow: 5px 5px 0px var(--text-color);
  margin-top: 25px;
  color: var(--text-color);
  background-color: var(--bg-color);
  transition: all 0.5s;
}

.output-box-btn:hover {
  box-shadow: 0px 0px 0px var(--text-color);
}

.output-box-btn:focus-visible {
  outline: none;
}

ul {
  font-weight: 500;
  font-size: 18px;
  color: var(--text-color);
  margin-top: 20px;
  margin-left: 18px;
}

h2 {
  font-size: 28px;
  margin-bottom: 10px;
}

ul::selection,
h2::selection,
.output-box::selection,
.output-box-btn::selection {
  background-color: var(--text-color);
  color: var(--bg-color);
}



/** =====  Start Media Queries Section  ===== **/

@media only screen and (max-width: 576px) {

  h1 {
    padding: 10px;
  }

  ul,
  pre,
  .output-box,
  .output-box-btn {
    font-size: 16px;
  }

}

/** =====  End Media Queries Section  ===== **/



/* =====  Start Scrollbar Section  ===== */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background-color: var(--bg-color);
}

::-webkit-scrollbar-thumb {
  background-color: var(--text-color);
  border-radius: 50px;
  height: 50px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #6f967a;
}

/* =====  End Scrollbar Section  ===== */