body {
  font-family: Arial, sans-serif;
  text-align: center;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0;
  gap: 40px;
}

#footer {
  bottom: 0;
  position: relative;
}

.img {
  width: 300px;
  height: 300px;
  border-radius: 16px;
  cursor: pointer;
}

#grid-game {
  display: grid;
  grid-template-columns: max-content max-content max-content;
  column-gap: 40px;
  row-gap: 20px;
  width: fit-content;
  padding-bottom: 50px;
}

#notes-todo {
  display: inline-flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-evenly;
  flex-wrap: wrap;
  align-items: center;
}

.game{
  display:flex;
  justify-content: center;
  flex-direction: column;
  background-color: #1e293b;
  padding:25px;
  border-radius: 16px;
  font-size: 24px;
  color: #6366f1;
}

.quit-btn {
    background: linear-gradient(135deg, #6366f1 , #8b5cf6);
    color: white;
    border: none;
    padding: 0.9rem 1.8rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    width: fit-content;
}

.hidden {
    display: none;
}
