html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px; /* Margin bottom by footer height */
  background-image: url("../images/rickmorty.png");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: bottom center;
  background-position-x: 70%;
}

.game-container {
  color: white;
  padding: 30px;
}

.push {
  margin: 50px;
  height: 50px;
}

.footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px; /* Set the fixed height of the footer here */
  line-height: 60px; /* Vertically center the text there */
  background-color: #f5f5f5;
  text-align: center;
}

#characters,
#enemyCharacters {
  display: grid;
  grid-template-columns: 205px 205px 205px 205px;
  padding: 0;
  cursor: pointer;
}

.character {
  width: 200px;
  height: 180px;
  border-radius: 25px;
  padding: 0;
  text-align: center;
}

.character:hover {
  border-radius: 25px;
  border: 2px solid rgb(95, 94, 94);
}

.character-image {
  width: 150px;
  padding: 0;
}

#playerCharacter .character {
  border-radius: 25px;
  border: 2px solid rgb(95, 94, 94);
  background-color: aqua;
}

#enemyCharacters .character {
  border-radius: 25px;
  border: 2px solid rgb(95, 94, 94);
}

#enemyCharacters .character:hover {
  border-radius: 25px;
  border: 2px solid rgb(95, 94, 94);
  background-color: maroon;
}

#enemy .character {
  border-radius: 25px;
  border: 2px solid rgb(95, 94, 94);
  background-color: black;
  color: #f5f5f5;
}


