body {
  font-family: "Titillium+Web", sans-serif;
}
.container {
  width: 100%;
  height: 300px;
  flex-direction: column;
}
.container ul {
  display: flex;
}
.container ul li {
  font-size: 30px;
  font-weight: 100px;
  list-style-type: none;
  border-radius: 10px;
  box-shadow: 3px 3px 10px 2px rgba(0, 0, 0, 0.5);
  background-color: grey;
  flex-grow: 1;
  text-align: center;
  height: 300px;
  margin: 10px;
  align-items: flex-end;
}
.container ul li div {
  background: rgba(1, 1, 1, 0.5);
  border-radius: 5px;
  color: white;
  padding: 10px;
}
footer {
  margin: 50px 0px 0px 0px;
  text-align: center;
}
h1 {
    margin: 50px 0px;
    text-align: center;
}

.container ul :hover {
  transition: 0.5s all ease-in-out;
  background-color: black;
  color: white;
  box-shadow: 5px 5px 15px 2px rgba(0, 0, 0, 0.8);
  transform: scale(1.05);
}
#tea {
  background-image: url(boba\ tea.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#smoothie {
  background-image: url(mango\ smoothie.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
#juice {
  background-image: url(orange\ juice.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
