* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  background-color: #222;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.container .box {
  position: relative;
  width: 300px;
  height: 400px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-box-reflect: below 15px linear-gradient(transparent, transparent, rgba(0, 0, 0, 0.1));
  transition: all 0.1s;
}
.container .box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #2222223f;
  filter: url(#wavy);
  border: 1px solid #ffffff0a;
}
.container .box::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  border-right: none;
  background-color: #ffffff0a;
  filter: url(#wavy);
}
.container .box .content {
  position: absolute;
  text-align: center;
  padding: 20px;
  filter: url(#text);
}
.container .box .content h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
}
svg {
  width: 0;
  height: 0;
}
