@import url("https://fonts.cdnfonts.com/css/gill-sans-mt-2");

* {
  font-family: "Gill Sans MT", sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
  user-select: none;
  overflow: hidden;
}

body {
  background-color: #15041d;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

#container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#imgPokemon {
  height: 180px;
  width: 180px;
}

p {
  font-size: 24px;
  font-weight: 600;
  background-color: #fff700;
  border-radius: 6px;
  padding: 4px 8px;
}

button {
  font-size: 16px;
  font-weight: 600;
  height: 40px;
  width: 120px;
  margin: 80px 60px 80px;
  background-color: rgb(255, 0, 0);
  border-radius: 8px;
  color: aliceblue;
  border: 2px solid #ffffff;
  border-bottom: 5px solid #ffffff;
}

button:active {
  border-bottom: 1px solid #fff700;
  transform: translateY(6px);
}

button:hover {
  background-color: rgb(251, 127, 127);
}

button:disabled {
  background-color: lightgrey;
  cursor: not-allowed;
}

.imgType {
  height: 32px;
  width: 32px;
  margin: 0 4px;
  border: 3px solid #fff700;
  border-radius: 6px;
}

.card {
  height: 480px;
  width: 350px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  border: 12px solid #fff700;
  background-color: rgb(255, 255, 255);
  border-radius: 15px;
  box-shadow: 0 0 6px 2px #fff700, inset 0 0 10px #000000d0;
}

.spellName {
  font-size: 14px;
}

.pokemonNameType {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  align-items: center;
}

.imgPokemonContainer {
  height: 220px;
  width: 240px;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  border: 5px solid #fff700;
  box-shadow: inset 0 0 10px #000000d0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.typeContainerSpells {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}

.button {
  display: flex;
  align-items: center;
}

h1 {
  color: aliceblue;
  font-size: 75px;
}

h2 {
  color: aliceblue;
  font-size: 35px;
}

@media (max-height: 800px) {
  button {
    margin: 40px 20px 40px;
  }
}

@media (max-width: 720px) {
  h2 {
    font-size: 30px;
  }
  button {
    height: 36px;
    width: 80px;
    margin: 50px 20px 50px;
  }
}

@media (max-width: 600px) {
  h2 {
    font-size: 20px;
  }
  button {
    margin: 30px 20px 30px;
    font-size: 14px;
  }
}
