@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@300..700&display=swap');
*{
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0 solid #e5e7eb;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
}

body {
  font-size: 16px;
  margin: 0px;
  padding: 0px;
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
  background: #0f172a;
  overflow-x: hidden;
  color: #e2e8f0;
  background: url(./bg.png), #0f172a;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
}

body::after {
  background: #0f172ac2;
  position: absolute;
  content: '';
  inset: 0;
  width: 100%;
  height: 100%;
}

main {
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 60px;
  line-height: 60px;
  font-weight: 800;
  color: #fff;
  letter-spacing: -1.5px;
}

p {
  color: #94a3b8;
  font-size: 18px;
  line-height: 24px;
  margin: 0 128px 0;
}

h2 {
  font-size: 20px;
  line-height: 28px;
  font-weight: 500;
}

.header {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 20px;
  padding-top: 30px;
  gap: 10px;
}

.content__output {
  padding: 20px 0 0;
}

.content__col--box * {
  font-family: "Fira Code", monospace;
}

.content__col--box,
#tailwindOutput {
  min-height: 100px;
  border: 1px solid #ffffff1a;
  border-radius: 8px;
  background-color: #1e293b;
  font-family: "Fira Code", monospace;
  font-optical-sizing: auto;
  overflow-y: auto;
  white-space: pre;
  tab-size: 4;
  color: #fff;
  resize: none;
  padding: 15px;
  font-size: 14px;
  line-height: 20px;
  text-wrap: wrap;
}

#cssInput:focus,
#cssInput:focus-visible,
#cssInput:active {
  border: 1px solid #cdeea749;
}

.content__col--box {
  min-height: 500px;
  width: 100%;
  margin-top: 10px;
}

.content__title {
  display: flex;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.content {
  padding: 20px 0;
}

.content__inner {
  display: flex;
  width: 100%;
  gap: 20px;
  padding-bottom: 20px;
}

.content__col {
  width: 50%;
}

.content__header {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

button {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 14px;
  line-height: 20px;
  padding: 8px 24px;
  cursor: pointer;
  text-decoration: none;
  border: none;
  box-shadow: inset 0 1px 0 0 #fff3;
  background: #0ea5e9;
  color: #ffffff;
  border: none;
  transition: all 250ms;
}

.text-blue-400 {
  color: #38bdf8;
}

button:hover {
  color: #ffffff;
  background: #38bdf8;
  box-shadow: 5px 5px 10px rgba(12, 15, 23, 0.3);
}

.button-2 {
  background: #6366f1;
}

.button-2:hover {
  background: #818cf8;
}

@media (max-width: 768px) {
  
  h1 {
    font-size: 30px;
    line-height: 30px;
    letter-spacing: -1px;
  }

  p {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
  }

  .header {
    padding: 20px 0;
    padding-top: 30px;
    gap: 10px;
  }

  .content {
    padding: 0px 0 20px;
  }

  h2 {
    font-size: 14px;
    line-height: 20px;
    font-weight: 500;
  }

  .content__col {
    width: 100%;
  }

  .content__inner {
    flex-direction: column;
    gap: 10px;
  }

  .content__col--box {
    min-height: 250px;
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    font-size: 12px;
    line-height: 16px;
  }

  #tailwindOutput {
    min-height: 150px;
  }

  button {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 5px;
    font-size: 12px;
    line-height: 16px;
    padding: 6px 14px;
  }

}