@import url('https://fonts.googleapis.com/css2?family=Comic+Neue:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

:root {
  --bg: #7c3c21;
  --bg2: #53ab3a;
  --gagcard: #47210e;
  --text: #e6e9f5;
  --muted: #a9a29c;
  --accent: #0ff01a;
  --accent2: red;
  --danger: #ff7b7b;
}

body {
  margin: 0;
  font-family: "Comic Neue", cursive;
  margin: 0;
  min-height: 100vh;
  height: 100%;
  overflow: hidden;
  background: url('Studs.png') repeat, var(--bg);
  background-size: 120px;
  color: var(--text);
}
#label1, #label2 {
  color: var(--muted);
}
#label3 {
  color: #ff8282 !important;
}
.wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 32px 20px 60px;
}

#header {
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100vw;
  height: auto;
  background: url('Studs.png') repeat, var(--bg2);
  background-size: 120px;
  margin-bottom: 20px;
  text-align: center;
}
h1 {
  margin: 0 0 8px;
  font-size: 60px;
  -webkit-text-stroke-width: 1.5px;
  -webkit-text-stroke-color: black;
  text-stroke-width: 1.5px;
  text-stroke-color: black;
  letter-spacing: 0.2px;
}

.subtitle {
  color: var(--muted);
  margin-bottom: 20px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 32px;
  margin-top: 120px;
}

.card {
  background-color: #47210e;
  border: 5px solid #331203;
  border-radius: 5px;
  padding: 14px 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  text-align: center;
}

.label {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

#card3 {
  background-color: white;
  border: 5px solid lightgrey;
}
.value {
  font-size: 22px;
  font-variant-numeric: tabular-nums;
}

.value.accent { color: var(--accent); }
.value.accent2 { color: var(--accent2); }
.value.danger { color: var(--danger); }

.section-title {
  margin: 8px 0 10px;
  font-size: 30px;
}
pre {
  background: #0e1020;
  border: 1px solid #3e1a04;
  border-radius: 12px;
  padding: 12px 14px;
  white-space: pre-wrap; 
  word-break: break-word;
  font-size: 13px;
  line-height: 1.5;
  color: #d8dbef;
}
#headerDesc {
  color: black;
  font-weight: bold;
}
@media screen and (max-width: 600px) {
  h1 {
    font-size: 25px;
    -webkit-text-stroke-width: 1px;
    text-stroke-width: 1px;
  }
  .section-title {
    font-size: 18px;
  }
  .label {
    font-size: 10px;
  }
  .grid {
    margin-top: 80px;
  }
}
@media only screen and (min-width: 601px) and (max-width: 1024px) {
  h1 {
    font-size:40px;
  }
  .section-title {
    font-size: 25px;
  }
  .grid {
    margin-top: 80px;
  }
}