@font-face {
  font-family: 'Share Tech Mono';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(./fonts/ShareTechMono-Regular.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

.card-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
}

.card {
  background-color: #f8f3e5; /* Matching your cream background */
  border: 1px solid #333;
  border-radius: 20px;
  padding: 20px 60px;
  width: 100%;
  max-width: 800px; /* Limits how big it gets on desktop */
  min-width: 320px;
  min-height: 500px;
  box-sizing: border-box;

  /* Flexbox layouts the text and icon side-by-side */
  display: flex;
  flex-direction: column; 
  /* justify-content: space-between; */
  align-items: left;
  gap: 60px;
}

.card-title {
  font-family: 'Share Tech Mono', monospace;
  font-size: 5rem; /* Scales well, adjust as needed */
  margin: 0;
}

h1 {
  font-weight: 400 !important;
}

.card-icon {
    margin: 0 auto;
}

img.construction {
    width: 120px;
    height: auto;
}

/* Mobile Responsiveness (The Pivot) */
@media (max-width: 600px) {
  .card {
    padding: 7px 20px;
  }

  .card-title {
    font-size: 4.5rem;
  }
}