@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;700&display=swap");

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

body {
  background: linear-gradient(90deg, #4743d0, #880868);
  font-family: "Poppins", sans-serif;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  width: 100vw;
  text-align: center;
  overflow-x: hidden;
}
h1 {
  font-size: 3rem;
  color: #fff;
}
form {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  margin: 2.5rem 0;
}

input,
button {
  background: #fff;
  font-size: 1.2rem;
  border: none;
  padding: 15px 20px;
}
input {
  font-weight: bold;
}
input:focus {
  outline: none;
}

button {
  cursor: pointer;
}

.poke-container {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  padding: 0.5rem;
}
.poke-box {
  margin: 10px;
  width: 250px;
  background: #fff;
  border-radius: 15px;
  padding: 5px;
}

.poke-box img {
  width: 80%;
  margin-bottom: 10px;
}

.poke-box h4 {
  font-size: 1.4rem;
  margin: 5px auto;
}

.poke-box p {
  margin: 5px auto;
}
