@font-face {
  font-family: 'inter';
  src: url(/_next/static/media/0336a89fb4e7fc1d-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 100 900;
  font-style: normal;
}

@font-face {
  font-family: 'inter';
  src: url(/_next/static/media/c91adde9f78caceb-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 100 900;
  font-style: italic;
}

@font-face {
  font-family: 'inter Fallback';
  src: local("Arial");
  ascent-override: 89.79%;
  descent-override: 22.36%;
  line-gap-override: 0.00%;
  size-adjust: 107.89%;
}

@font-face {
  font-family: 'source';
  src: url(/_next/static/media/ba487c32d105d659-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'source Fallback';
  src: local("Arial");
  ascent-override: 104.47%;
  descent-override: 28.98%;
  line-gap-override: 0.00%;
  size-adjust: 94.19%;
}

@font-face {
  font-family: 'plexMono';
  src: url(/_next/static/media/44abb7d9d613e278-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'plexMono';
  src: url(/_next/static/media/162e1140ce5a788f-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'plexMono';
  src: url(/_next/static/media/5f4877925f1cef50-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'plexMono';
  src: url(/_next/static/media/dab80f54fa5deafc-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'plexMono';
  src: url(/_next/static/media/551ac2b2ce969c74-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'plexMono';
  src: url(/_next/static/media/5ba23b2b0ac11fa6-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'plexMono Fallback';
  src: local("Arial");
  ascent-override: 77.95%;
  descent-override: 20.91%;
  line-gap-override: 0.00%;
  size-adjust: 131.49%;
}

@font-face {
  font-family: 'ubuntuMono';
  src: url(/_next/static/media/37581c031699de0a-s.p.woff2) format('woff2');
  font-display: swap;
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'ubuntuMono Fallback';
  src: local("Arial");
  ascent-override: 75.75%;
  descent-override: 15.51%;
  line-gap-override: 0.00%;
  size-adjust: 109.58%;
}

body {
  font-family: Arial, sans-serif;
}

h1, h2, h3, h4 {
  font-family: 'plexMono', 'plexMono Fallback', Arial, sans-serif;
  font-weight: 300;
  font-display: swap;
  font-style: normal;
  color: #7dd3fc;
}

pre {
  background-color: #333;
}
/* From Uiverse.io */ 
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.container * {
  padding: 0;
  margin: 0;
  text-align: center;
}

.card {
  width: 420px;
  height: 140px;
  background-color: #1e293b;
  border-radius: 10px;
  display: grid;
  grid-template-rows: 40px 1fr;
  text-align: center;
}

.card .header {
  display: flex;
  align-items: center;
  position: relative;
}

.card .header .title {
  color: #7dd3fc;
  font-size: 13px;
  padding: 2px 12px;
}

.card .header .copy {
  position: absolute;
  background: transparent;
  border: none;
  top: 61%;
  right: 1px;
  transform: translate(-50%, -50%);
  color: rgb(100, 116, 139);
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 100;
}

.card .header .copy:hover {
  color: rgb(148, 163, 184);
}

.card .header::before {
  content: "";
  position: absolute;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  border: 1px solid #64748b4d;
  right: 1px;
  bottom: 0;
  background-color: #33415580;
  width: 282px;
  height: 33px;
  z-index: 100;
}

.card .header::after {
  content: "";
  position: absolute;
  width: 33%;
  height: 1px;
  background-color: #7dd3fc;
  bottom: 0;
}

.card .footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding-left: 10px;
}

.card .footer .code {
  display: flex;
  align-items: center;
}

.card .footer .code .icon {
  color: rgb(244, 114, 182);
  padding-top: 3px;
}

.card .footer .code .text {
  padding-left: 3px;
  color: #f8fafc;
}

