/*
Name: Jeni Lane
Date: 04/29/2018
Section: CSE 154 AG

This is the index.css page for Creative Project 05. It includes all of the
css styles needed for the "Choose that Pokemon" website.
*/
@import url('https://fonts.googleapis.com/css?family=Gamja+Flower');

#gif-area, img {
  margin: 2%;
}

button, textarea {
  margin: 1%;
}

body, main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

main, p {
  background-color: white;
  border: 3px dashed #666666;
}

body {
  font-family: 'Gamja Flower';
  background-color: #E8E8E8;
  text-align: center;
  margin-bottom: 5%;
}

p {
  padding: 2%;
  width: 30%;
  font-size: 18pt;
}

main {
  width: 75%;
}

img {
  width: 80%;
}

h3 {
  font-size: 30pt;
}
