body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f0f0f0;
  }

.container {
  width: 50vw; /* Takes up half the width of the viewport */
  max-width: 800px; /* Optional: limit the maximum width */
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }

.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto auto;
  gap: 10px;
  padding: 20px;
  }

.item {
  padding: 10px;
  background-color: #e9e9e9;
  color:black;
  border-radius: 4px;
  }

.search-bar {
  display: flex;
  align-items: center;
  }

.search-bar input {
  flex: 1;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 4px;
  }

.search-bar button {
  padding: 6px 12px;
  margin-left: 5px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  }

.score {
  padding: 5px;
  background-color: #d1ffd1;
  text-align: center;
  }

.incorrect {
  color:darkslategray;
}