* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background-color: #FFD400;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100vh;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  margin-top: 20px;
}


.voltar {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 25px;
  font-size: 40px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.voltar:hover {
  background-color: #ffe97a;
}


.resetar {
  background-color: white;
  color: black;
  border: none;
  padding: 10px 25px;
  font-size: 37px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
}

.resetar:hover {
  background-color: #ffe97a;
}


.search-box {
  display: flex;
  align-items: center;
  background-color: rgb(205,146,20);
  padding: 10px 20px;
  border-radius: 0px;
  border: white solid 1px;
  font-weight: bold;
  font-size: 40px;
  color: #fff;
}

.search-box input {
  margin-left: 10px;
  background-color: #fff;
  border: none;
  border-radius: 5px;
  padding: 5px 10px;
  font-weight: 700;
  color: #000;
  width: 300px;
  height: 70px;
  text-align: center;
  font-size: 25px;
}


.card {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  margin-top: 60px;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  text-align: center;
  width: 750px;
  height: 500px;
}

.card img {
  width: 400px;
  transition: opacity 0.3s ease;
}


.info {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  font-size: 28px;
  color: black;
}


.fire { color: #EE8130; }
.water { color: #6390F0; }
.grass { color: #7AC74C; }
.electric { color: #F7D02C; }
.psychic { color: #F95587; }
.ice { color: #96D9D6; }
.dragon { color: #6F35FC; }
.dark { color: #705746; }
.fairy { color: #D685AD; }
.fighting { color: #C22E28; }
.flying { color: #A98FF3; }
.ground { color: #E2BF65; }
.rock { color: #B6A136; }
.bug { color: #A6B91A; }
.ghost { color: #735797; }
.steel { color: #B7B7CE; }
.poison { color: #A33EA1; }
.normal { color: #A8A77A; }
