*{
    box-sizing: border-box;
}
body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color:rgb(192, 124, 226);
    color:coral;
    font-family: Arial, sans-serif;
    font-weight: bold;
    background-image: url(memoria\ frutas.jpg);
    font-size: 25px;
  }
  
  .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:rgb(139, 235, 240);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    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:coral;
    color:white;
    border-radius: 5px;
    margin-top: 20px;
    font-size: 20px;
    cursor: pointer;
}
button:hover{
    background-color:rgb(190, 132, 244);
}
