@import url('https://fonts.googleapis.com/css2?family=Anton&family=Bebas+Neue&family=Noto+Serif&family=PT+Serif&family=Rubik&family=Rubik+Glitch&display=swap');
*{
    margin: 0;
    padding: 0;
}
h1{
    font-family: 'Anton', sans-serif;
    letter-spacing: 3px;
    font-size: 2.5rem;
}
.container{
    background-image:linear-gradient(yellow,orangered);
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.pokemon-input{
    width: 200px;
    margin-top:50px; 
    margin-left:5px;
    border: 1px solid;
    border-radius: 15px;
    height: 35px;
    text-align: center;
    font-size: 1.4rem;
    position:relative; 
    bottom:4px;
    font-family : 'Noto Serif', serif;
}
.pokemon-name{
    font-size: 1.7rem;
    font-weight: bold;
    margin-top: 45px;
    font-family: 'PT Serif', serif;
}

.ID{
    font-size:2rem; 
    font-family: 'Rubik', sans-serif;
    font-weight: bold;
}
.pokemon-button{

    width: 200px;
    height: 45px;
    border-radius: 30px;
    cursor: pointer;
    font-size:1rem;
    font-family: 'Noto Serif', serif;
    font-weight: bold;
}
.pokemon-button:hover{
    background-color:orange;
}

@media screen and (max-width:645px) {
    h1{
      font-size: 18px;
      margin-bottom: 20px;
    }
    .ID{
        font-size: 18px;
    }
    .pokemon-input{
       font-size: 17px;
       width: 120px;
       height: 29px;
       position: relative;
       top:-0.5px
    }
    .pokemon-name{
        font-size: 1.3rem;
    }
    .pokemon-button{
        width: 189px;
        height:40px;
        font-size: 0.9rem;
}
}