html{
  font-family: 'Brush Script MT', cursive;
}

body {
  background-color: bisque;
  color: black;
  
  background-image: url("bg.png");
}

coffee {
  color: sienna;
}

div {
  width: 500px;
  border: 2px solid gray;
  padding: 50px;
  box-shadow: 5px 5px burlywood;
  background-color: beige;
}

div-stuff {
  border: 2px solid gray;
  padding: 10px;
  box-shadow: 5px 5px burlywood;
  font-size: 0.8rem;
  background-color: beige;
}

.buttons {
  background-color: BlanchedAlmond;
  box-shadow: 2px 2px burlywood;
}

.animated-button {
    cursor: pointer;
    transition: all 0.1s;
    position: relative;
    overflow: hidden;
}


/* Shrink Animation */
.click-shrink:active {
    transform: scale(0.9);
}

