* {
  font-family: 'Quicksand',
  'Helvetica',
  'Arial',
  sans-serif;
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  min-height: 100vh;
}
body::after {
  content: "";
  background-image: url('/assets/pokeball.png');
  background-size:100px;
  background-color: rgb(251 196 26);
  opacity: 0.09;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  position: fixed;
  z-index: -1;
  min-height: 100vh;
}
.header {
  text-align: center;
  margin-bottom: 20px;
}
h1 {
  margin-top: 30px;
  display: inline-block;
}
.blurb {
  display: inline-block;
}
.searchContainer {
  text-align: center;
}
.searchWrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
    padding-right: 0px;
}
.input {
  border: 1px solid transparent;
  padding: 5px;
  border-radius: 5px;
}
input[type=text] {
  background-color: #d6d5d5;
  width: 100%;
  cursor: text;
}
input[type=submit] {
  background-color: rgb(254 204 47);
  color: black;
  cursor: pointer
}
.input[type=submit]:hover {
  background-color: rgb(251 196 26);
}
.pokemonTitleContainer {
  text-align: center;
  margin-bottom: 10px;
}
.pokemonTitle {
  font-size: 1.8rem;
  display: inline-block;
}
.column {
  flex: 1;
}
.leftColumn {
  text-align: center;
}
.item {
  border-radius: 10px;
}
.card {
  width: 100%;
  padding: 10px 20px;
}
img {
  display: block;
  max-width: 220px;
  height: 220px;
  margin: 0px auto;
}
.statsContainer {
  line-height: 30px;
  padding: 10px 20px;
}
.statsLabel {
  font-size: 1.2rem;
  font-weight: bold;
}
ul {
  list-style: none;
  padding: 0;
}
li {
  font-weight: bolder;
  color: #737373;
}
.stat {
  font-weight: 100;
  color: black;
}

@media only screen and (min-width: 568px) {
  .sectionContainer {
    display: flex;
    flex-direction: row;
    padding: 0 5vw;
  }
  .searchContainer {
    margin-bottom: 20px;
  }
  .searchWrapper {
    margin-bottom: 0px;
    padding-right: 10px;
  }
  img {
    margin: 20px auto;
  }
}