body {
        color: tomato;
        
  background: #0f172a;
  font-family: sans-serif;
  color: white;
 
      }

      .dev {
        background-color: black;
      }

      .lin {
        cursor: pointer;
      }

      .nav {
        color: white;
      }
      
h1 {
  color: #38bdf8;
  margin-bottom: 20px;
}

.game-board {
  display: grid;
  grid-template-columns: repeat(4, 100px);
  gap: 15px;
  justify-content: center;
}

.card {
  width: 100px;
  height: 100px;
  background-color: #1e293b;
  border: 2px solid #38bdf8;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.4s;
}

.card.flipped {
  background-color: #38bdf8;
}
* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Press Start 2P', cursive;
    }

    body {
      background: radial-gradient(circle at top, #0f172a, #020617);
      color: #f8fafc;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      height: 100vh;
      text-align: center;
      padding: 20px;
    }

    h1 {
      font-size: 1.5rem;
      margin-bottom: 30px;
      color: #60a5fa;
    }

    .choices {
      display: flex;
      gap: 30px;
      margin-bottom: 30px;
    }

    .choice {
      background: #1e293b;
      border: 2px solid #60a5fa;
      border-radius: 20px;
      padding: 20px 30px;
      cursor: pointer;
      transition: transform 0.2s, background 0.3s;
      color: #f1f5f9;
    }

    .choice:hover {
      transform: scale(1.1);
      background-color: #334155;
    }

    .result, .score {
      margin-top: 20px;
      font-size: 1rem;
      background-color: #1e293b;
      padding: 15px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(96, 165, 250, 0.2);
    }

    .restart-btn {
      margin-top: 20px;
      padding: 10px 20px;
      font-size: 0.9rem;
      background-color: #60a5fa;
      color: #0f172a;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s;
    }

    .restart-btn:hover {
      background-color: #3b82f6;
    }
