body {
  font-family: 'Roboto', sans-serif;
}

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

.pokedex {
  display: block;
  width: 100%;
  max-width: 400px;
  height: 600px;
  background: #CE1030;
  margin: 50px auto;
  overflow: auto;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

h1 {
  display: block;
  font-weight: 100;
  margin: 25px 0;
  text-align: center;
  color: #FFA500;
  font-family: impact;
  font-size: 3rem;
  letter-spacing: 2;
  text-shadow: -3px -3px 3px #0000DF, 3px -3px 3px #0000DF, -3px 3px 3px #0000DF, 3px 3px 3px #0000DF;
}

h3 {
  display: block;
  font-weight: 300;
  font-size: 1.5rem;
  text-align: center;
  margin: 25px 0;
  color: aqua;
  letter-spacing: 2px;
  min-height: 25px;
}

form {
  text-align: center;
}

input[type="text"] {
  font-size: 2rem;
  margin: 25px auto;
  display: block;
  border-radius: 5px;
  border: 1px solid grey;
  text-align: center;
}

.btn {
  display: inline-block;
  width: 100px;
  padding: 10;
  color: #FFA500;
  background: #FFA500;
  font-weight: 300;
  cursor: pointer;
  font-size: 1.5rem;
  border: 2px solid blue;
  text-shadow: -1px -1px 1px #0000DF, 1px -1px 1px #0000DF, -1px 1px 1px #0000DF, 1px 1px 1px #0000DF;
  letter-spacing: 1px;
  border-radius: 5px;
}

.loading-container {
  background: #fff;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  display: none;
}

.poke-img {
  width: 150px;
  height: 150px;
  border: 5px solid grey;
  display: block;
  margin: 0 auto;
  background: #fff;
  border-radius: 5px;
}

img {
  width: 100%;
}

.title {
  color: aqua;
  text-align: center;
  width: 100%;
  max-width: 400px;
  height: 60px;
  background: #CE1030;
  margin: 0 auto;
  overflow: auto;
  overflow: hidden;
  position: relative;
  border-radius: 10px;
}

.p,
.p2,
.p3,
.p4,
.p5 {
  text-align: center;
  font-size: 1rem;
  font-weight: 200;
  width: 100%;
  max-width: 400px;
  height: 16px;
  color: aqua;
  margin: 0 auto;
  overflow: auto;
  overflow: hidden;
  position: relative;
}