    title {
    font-family: sans-serif;
    text-align: center;
    color: white;
    height: 100vh;
    }
    
    
    body {
      font-family: sans-serif;
      background: #0f172a;
      color: white;
      height: 30vh;
    }
    .grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      max-width: 600px;
      width: 100%;
    }
    a {
      text-decoration: none;
      color: white;
      padding: 20px;
      background: #1e293b;
      border-radius: 10px;
      text-align: center;
      font-size: 1.2em;
    }
    a:hover {
      background: #334155;
    }