.landing-page{
  background: url('https://theblucloud.imgix.net/stitch/stitch-bg.png?auto=format') no-repeat;
  background-size: cover;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.message-wrapper {
  text-align: center;
  width: 260px;
  position: relative;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .14);
  -webkit-backdrop-filter: blur(35px);
  backdrop-filter: blur(35px);
  border-radius: 8px;
  overflow: hidden;
}
.message-wrapper :before {
  content: "";
  width: 310px;
  height: 80px;
  background-color: #1f2023;
  position: absolute;
  bottom: -10px;
  z-index: -1;
  left: -10px;
  filter: blur(28px);
  opacity: .5;
}
.message-wrapper img {
  display: inline-block;
}
p.message {
  margin-top: 10px;
  color: #eee;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: normal;
}