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

body {
  width: 100%;
  height: 100vh;
  background: #F5F5F5;
  display: flex;
  flex-direction: column;
  align-items: center;
}

h1 {
  font-family: 'Josefin Sans';
  margin-top: 10px;
}

input {
  width: 90%;
  max-width: 300px;
  height: 50px;
  border: 2px solid black;
  margin: 10px;
  padding: 10px;
}

button {
  margin-bottom: 10px;
  width: 80%;
  max-width: 250px;
  height: 50px;
  background: #4DA8DA;
  font-size: 1.4rem;
  border: 3px solid #80D8C3;
  font-family: 'Bebas Neue';
  letter-spacing: 2px;
  box-shadow: 0 3px 5px 0 black;
  transition: all 0.5s;
}

button:hover {
  transform: scale(1.04);
}

button:active {
  transform: scale(0.9);
}

.pokeFactCard {
  font-family: 'Bebas Neue';
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 1.4px;
}

.pokeFactCard .imageFull {
  width: 80%;
  max-width: 300px;
  display: block;
}

.imageFront, .imageBack {
  width: 40%;
  max-width: 150px;
}

.pokeFactCard  .name {
  text-transform: capitalize;
}