/* =========================================
   PAGE LAYOUT
   ========================================= */
.todo-wrapper {
  display: flex;
  justify-content: center;
  border-color: rgba(124,92,255,0.45);
  color:white;
  background:blue;
  min-height: 100vh;
  padding: 60px 20px;
  box-sizing: border-box;
  overflow: visible;
}

.todo-card {
  width: 100%;
  max-width: 900px;
  color:white;
  background:blue;
  border-color: rgba(124,92,255,0.45);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  background:blue;
  margin: 0;
}

.hero-title-2{
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(18px, 3.5vw, 44px);
}

.hero-subtitle-3{
  display: flex;
justify-content: center;
  align-items: center;
}
  
justify-content: center;
  align-items: center;
}
.p-3{
  display: flex;
justify-content: center;
  align-items: center;
}

/* Desktop */
@media (min-width: 860px){
  .nav-links{ display: flex; }
  .hero-grid{ grid-template-columns: 1.25fr 0.75fr; align-items: start; }
  .hero-meta{ grid-template-columns: repeat(3, 1fr); }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .cols-2{ grid-template-columns: repeat(2, 1fr); }
  .cols-3{ grid-template-columns: repeat(3, 1fr); }
  .contact-grid{ grid-template-columns: 1fr 1fr; }
}