/*
 * SECTION 8 EXERCISE: Mimikyu's Secret
 *
 * Provides basic styles for index.html.
 */

@import url('https://fonts.googleapis.com/css?family=Roboto&display=swap');

body {
  text-align: center;
  background-color: #f3ff91;
  margin: 0;
}

body, button {
  font-family: Roboto, sans-serif;
}

button {
  margin-top: 1em;
}

img {
  border-radius: 2em;
  border: 0.5em solid black;
  display: block;
  margin: auto;
}

footer {
  background-color: white;
  position: fixed;
  bottom: 0;
  width: 100%;
}

.hidden {
  display: none;
}

#rejected p {
  font-size: 40pt;
  font-weight: bold;
  color: red;
}

#accepted p {
  font-size: 20pt;
}
