body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-image: url(romance-1306219_1280.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    color: fuchsia;
    font-family: Arial, sans-serif;
  }
  
  .game-container {
    text-align: center;
  }
  
  .memory-game {
    display: grid;
    grid-template-columns: repeat(4, 100px);
    gap: 10px;
    margin-top: 20px;
  }
  
  .card {
    width: 100px;
    height: 100px;
    background-color: aquamarine;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: aqua;
    cursor: pointer;
    border-radius: 5px;
  }
  .card .icon{
    display: none;
  }
  .card.flip .icon{
    display: block;
    color: #333;
  }

  
  .card.flip {
    background-color: #f0f0f0;
    color: #333;
  }
  button{
    background-color: pink;
    color: fuchsia;
    margin-top: 20px;
    border-radius: 8px;
    font-size: 25px;
    cursor: pointer;

  }
  button:hover{
    background-color: aquamarine;
  }
