body {
  margin: 0;
  background-color: lightgray;
}

.region-pic {
  width: 50%;
  height: auto;
  transition: transform .5s;
}

.region-pic:hover {
  transform: scale(2);
}

@keyframes fadeLocationIn{
  from { opacity: 0; } to { opacity: 1; };
}

.search-body {
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: white;
  margin: 50px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.19), 0 6px 6px rgba(0,0,0,0.23);
  font-family: 'Bangers';
  animation-name: fadeLocationIn;
  animation-duration: 2s;
}

.search-body > * {
  margin-top: 30px;
  margin-bottom: 30px;
}

.search-body input {
  width: 60%;
  font-size: x-large;
  font-family: 'Bangers';
}

.search-body select {
  width: 60%;
  font-size: x-large;
  font-family: 'Bangers';
}

.search-body button {
  border: solid #2a75bb;
  color: #2a75bb;
  border-radius: 5%;
  height: auto;
  width: auto;
  font-size: 3em;
  background-color: white;
  font-family: 'Bangers';
  font-weight: bolder;
}

.search-body button:hover {
  background-color: #2a75bb;
  color: white;
}

#region_display {
  display: flex;
}

#region-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.region-description {
  margin: 5%;
  font-family: 'Boogaloo';
}

.card-title{
  margin: auto;
  font-size: 3em;
  color: black;
}

.location-card{
  text-transform: capitalize;
  width: 100%;
}
.area-pokemon-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  border-color: black;
}

.area-pokemon-card .pokemon-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.area-pokemon-card .pokemon-card:nth-child(even){
  background-color: lightgray;
}
.area-pokemon-card .pokemon-card:nth-child(odd){
  background-color: lightblue;
}

.location-card{
  margin-top:50px;
}

.locations-title {
  font-size: 2em;
  font-weight: bold;
}

.location-name{
  background-color: #2a75bb;
  font-size: 2em;
  color: white;
  display: flex;
  justify-content: center;
}

.location-card .area-card{
  background-color: white;
  display: flex;
  justify-content: center;
  font-size: 1.5em;
}
