* {
  user-select: none;
}

body {
  background-image: url('images/bg.jpg');
  background-repeat: no-repeat;
  background-color: black;
  background-position: center center;
  background-size: cover;
  font-family: 'Gloria Hallelujah', cursive;
}

.card-game {
  font-size: 40px;
  color: red;
}

#hearts {
  color: red;
  font-size: 35px;
}

#timer {
  color: white;
  font-size: 25px;
}

.btn:hover {
  background-color: red;
  color: white;
}

.winner {
  background-image: url('images/winner.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
}

.loser {
  background-image: url('images/gameOver.gif');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  height: 100vh;
}

.item {
  background-image: url('/images/card.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  padding: 50px;
  margin: auto 5;
}

@media (max-width: 767.98px) {
  .card-game {
    font-size: 30px;
  }
  #hearts {
    font-size: 25px;
  }
}
@media (max-width: 480px) {
  .item {
    padding: 40px;
  }
}
