/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

.lucky-cat {
  justify-content: center;
  display: flex;
  flex-direction: row;
  text-align: center;
}

.lucky-cat p {
  font-family: "Coral Pixels", sans-serif;
  font-size: 22px;
}

h1 {
  font-family: "Jersey 10", sans-serif;
  font-size: 60px;
}

#title {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #b8ccff;
}

p {
  font-family: "Comic Relief", sans-serif;
  font-size: 18px;
}

/* source for code in [1]: https://www.w3schools.com/howto/howto_css_zoom_hover.asp */
.zoom {
  transition: transform .2s; /* Animation */
}

.zoom:hover {
  transform: scale(1.5); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
/* End of code in [1] */

.dialogue-box {
  display: flex;
  flex-direction: row;
}

h2 {
  background-color: #a1ffbf;
  text-align: center;
  font-family: "Bitcount Grid Double", sans-serif;
}

footer p {
  color: grey;
  font-size: 12px;
}