body {
  height: 420px;
  background-repeat: no-repeat, repeat;
  background-image: url("images/battle.png");
  background-position: right; /* Center the image */
  background-repeat: no-repeat; /*e[ Do not repeat the image */
  background-size: cover;
}
h1 {
  font-family: "Audiowide", cursive;
  text-align: center;
  font-size: 85px;
  background: -webkit-linear-gradient(#eee, #5eaaa8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h2,
h3,
h4 {
  color: #709fb0;
  font-family: "Audiowide", cursive;
  text-align: center;
  font-size: 30px;
  background: -webkit-linear-gradient(#eee, #5eaaa8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
h5 {
  text-align: center;
  font-size: 75px;
  color: black;
  font-family: "Audiowide", cursive;
  text-align: center;
  background: -webkit-linear-gradient(#141414, #a3d2ca);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
p {
  text-align: center;
  font-size: 30px;
  font-weight: 400;
  color: #c9ccd5;
  font-weight: 800;
  color: black;
}
.top-icon {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 200px;
}
/* nav bar */
.navbar {
  text-align: center;
}
.navbar-brand {
  font-family: "Audiowide", cursive;
}

/* card */

.item {
  padding: 100px;
  margin: 10px;
}
.container-poke {
  padding: 40px;
  margin: 0 auto;
  padding-top: 5%;
}

#pokedex {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  grid-gap: 20px;
  padding-inline-start: 0;
}

.card {
  list-style: none;
  padding: 40px;
  background-color: #f4f4f4;
  color: #222;
  text-align: center;
}

.card:hover {
  animation: bounce 0.5s linear;
}

.card-title {
  text-transform: capitalize;
  margin-bottom: 0px;
  font-size: 32px;
  font-weight: normal;
}
.card-subtitle {
  margin-top: 5px;
  color: #666;
  font-weight: lighter;
}

.card-image {
  height: 180px;
}

@keyframes bounce {
  20% {
    transform: translateY(-6px);
  }
  40% {
    transform: translateY(0px);
  }

  80% {
    transform: translateY(-2px);
  }
  100% {
    transform: translateY(0);
  }
}
footer {
  background-color: #5eaaa8;
}
.bottom-container {
  background-color: #5eaaa8;
}
.contact-me {
  background-color: #a3d2ca;
}
.footer-link {
  position: relative;
  left: 775px;
}
/* Style the form element with a border around it */
form {
  border: 4px solid #f1f1f1;
}

/* Add some padding and a grey background color to containers */
.container {
  padding: 20px;
  background-color: #f1f1f1;
}

/* Style the input elements and the submit button */
input[type="text"],
input[type="submit"] {
  width: 100%;
  padding: 12px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  box-sizing: border-box;
}

/* Add margins to the checkbox */
input[type="checkbox"] {
  margin-top: 16px;
}

/* Style the submit button */
input[type="submit"] {
  background-color: #04aa6d;
  color: white;
  border: none;
}

input[type="submit"]:hover {
  opacity: 0.8;
}
