* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif;
  background-image: url(https://i.pinimg.com/originals/df/4e/8b/df4e8ba28f912bf9cdf9fa0dfc196411.png);
  background-size: cover;
}

.logo img {
  width: 40vw;
  height: 30vh;
  margin-top: -3%;
}

.info {
  display: flex;
  justify-content: center;
  align-items: center;
}

button {
  font-size: 20px;
  margin: 5px;
  background-color: yellow;
  border: 5px solid blue;
  padding: 5px;
  margin-left: 10px;
  margin-top: 40px;
  font-weight: bold;
}

button:hover {
  transition: 0.3s ease-in;
  color: limegreen;
}

.image {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: -10%;
}

img {
  width: 10vw;
  height: 20vh;
  margin-top: 30px;
}

.pokemon-list-container {
  padding-left: 35px;
}

.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-weight: bold;
  margin-left: 40%;
  margin-top: -1%;
  padding-top: 10px;
  font-size: 15px;
  width: 15vw;
  height: 40vh;
  background: yellow;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  border-radius: 10px;
  border: 10px solid blue;
}
