* {
  font-family: "Monoton", sans-serif, funnel-sans;
}

body {
    text-align: center;
    background-color: blanchedalmond;
}

.funnel-sans {
  font-family: "Funnel Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

img {
  border-radius: 20px;
  transition: all 0.2s ease-in-out;
  width: 400px;
  height: auto;
}

img:hover {
  transform: translateY(-4px) scale(1.02);

}

.pop {
  color:brown;
  font-size: larger;
}

a {
  color: rgb(255, 157, 0);
  transition: color 0.2s ease-in-out, font-size 0.2s ease-in-out;
}

a:hover {
  font-size: 1.1em;
}

button {
    color: brown;
    border-radius: 25px;
    background-color: rgb(255, 157, 0);
    transition: all 0.2s ease-in-out;
    padding: 10px 20px;
    border: none;
}
button:hover {
    transform: scale(1.1);
    cursor: pointer;
}
