@font-face {
  font-family: "MadimiOne";
  font-weight: lighter;

  src: url(./fonts/MadimiOne-Regular.ttf) format("woff2");
}
@font-face {
  font-family: "Lobster";
  src: url(./fonts/Lobster-Regular.ttf) format("woff2");
}

@font-face {
  font-family: "Roboto";
  src: url(./fonts/Roboto-Regular.ttf) format("woff2");
}

body {
  padding: 1.5em;
  font-family: "Roboto";
  background-color: "#ddd";
  color: "#444";
  background-color: #eee;
  font-size: 1.25em;
}
h1 {
  font-family: "MadimiOne";
}
h2 {
  font-family: "Lobster";
}
h3 {
  font-family: "MadimiOne";
}

footer {
  font-family: "Lobster";
  font-size: 1em;
}
footer ul {
  display: inline-block;
  padding: 0 1em;
}
footer li {
  display: inline-block;
}
footer .button {
  padding: 0.3em 0.6em;
}

.big {
  font-size: 5em;
}
.medium {
  font-size: 3em;
}
.button {
  background-color: white;
  border: purple 2px solid;
  color: purple;
  padding: 1em 1.5em;
  text-align: center;
  text-decoration: none;
  display: inline-block;
}

.button:hover {
  background-color: purple;
  color: white;
}
.button.selected {
  background-color: rgba(128, 0, 128, 0.5);
  color: white;
  border: purple 2px solid;
}
.card {
  /* Add shadows to create the "card" effect */
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  transition: 0.3s;
  display: inline-block;
  max-width: 15em;
  background-color: #fff;
  padding: 1em;
}

/* On mouse-over, add a deeper shadow */
.card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

/* Add some padding inside the card container */
.container {
  padding: 2px 16px;
}
