* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: black;
}
.background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.background-video > video {
  width: 100%;
  height: 100%;
  background-position: cover;
}
.container {
  width: 600px;
  height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}
.quote-box {
  width: 500px;
  height: 250px;
  border-radius: 40px;
  box-shadow: inset 1px 1px 10px 2px gold;
  display: flex;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
  padding: 20px;
}
.quote-box > span {
  color: brown;
  font-size: 2.5em;
  text-align: center;
}
.cheer-you-up {
  color: rgb(194, 124, 13);
  box-shadow: inset 1px 1px 10px 2px gold;
  padding: 20px;
  font-size: 2em;
  font-weight: bolder;
  background-color: transparent;
  border-radius: 40px;
  border: none;
  backdrop-filter: blur(10px);
  overflow: hidden;
}
.cheer-you-up::before {
  content: "";
  position: absolute;
  width: 30px;
  height: 120px;
  background-color: #b47b21;
  opacity: 75%;
  top: -30px;
  transform: rotateZ(20deg);
  left: -40px;
  transition: left 700ms linear;
}
.cheer-you-up:hover::before {
  left: 300px;
}
