* {
    /*! defaultdan gelen değerleri sıfırlamak için bunları veriyoruz  */
    margin: 0;          
    padding: 0;
    box-sizing: border-box;
}
body {
    width: 100vw;
    font-family: Arial, Helvetica, sans-serif;
    background-image: linear-gradient(90deg, red, green, blue);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    text-align: center;
    overflow-x: hidden;
    position: relative;



}
h1 {
    text-align: center;
    font-size: 3rem;
    color: white;
    margin: 30px;
}

form {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    margin: 3rem 0;

}
input, button {
    padding: 10px 20px;
    background-color: lightblue;
    border: none;
    font-size: 1.2rem;
    
}
input:focus {
    outline: none;
}
button {
    cursor: pointer;

}
input {
    font-weight: bold;

}
.poke-container {
    display: flex;
    width: 100%;
    flex-wrap: wrap;
    padding: 3rem;
    justify-content: center;
    align-items: center;


}
.poke-box {
    width: 300px;
    background-color: wheat;
    border-radius: 15px;
    padding: 10px;
    color: #333;
  font-size: 1.2rem;
  margin: 20px;

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

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