#container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px;
  padding: 48px;
}

.monsterContainer {
  border-radius: 8px;
  width: 200px;
  height: 310px;
  cursor: pointer;
  overflow: hidden;
}

.monsterContainer:hover {
  transform: scale(1.3);
  box-shadow: 0px 0px 8px 8px #ffffff;
}

.monsterHeader {
  padding: 0 16px;
  display: flex;
  justify-content: space-between;
  background-color: rgb(8, 37, 51);
}

.monsterImg img {
  width: 100%;
}

.typeIconContainer {
  padding: 8px 16px;
  gap: 8px;
  display: flex;
  justify-content: center;
  background-color: rgb(8, 37, 51);
}
