@charset "utf-8";
/* CSS Document */
.card {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
  max-width: 300px;
  margin: auto;
  text-align: center;
  background-color:#f9f9f9;
  box-sizing: border-box;
  display: table;
}
.card:hover {
	background-color:#f8eecc;
}
.button {
  border: none;
  border-radius: 30px;
  outline: 0;
  display: inline-block;
  padding: 18px;
  color: white;
  font-size:18px;
  background-color: #1D4776;
  text-align: center;
  cursor: pointer;
  width: auto;
}

.button:hover {
  background-color: #79242F;
}