@mixin font-size($value) {
font-size: $value;
line-height: 36px;
}
.container {
display: flex;
flex-direction: column;
align-items: center;
text-align: center;
gap: 6px;
}
.title {
position: relative;
color: #FFF;
text-shadow: 0px 0px 10px var(--grayscale-dark);
@include font-size(42px);
&::before {
content: "";
position: absolute;
left: -20%;
right: -20%;
top: 50%;
height: 30%;
filter: blur(20px);
background: linear-gradient(180deg, rgba(0, 0, 0, 0) 3.92%, rgba(255, 255, 255, 0.13) 32.95%, rgba(255, 255, 255, 1.13) 66.47%, rgba(0, 0, 0, 0) 100%);
}
}
.description {
color: #FFF;
@include font-size(20px);
}