/*Shadow Style*/
.container:before {
content: "";
z-index: -1;
position: absolute;
top: 0;
right: 0;
bottom: 0;
left: 0;
background: linear-gradient( 10deg, #faebd7,#00ff33);
transform: translate(4px,6px) scale(1.01);
filter: blur(4);
transition: opacity 0.3s;
border-radius: inherit;
opacity:0.9 ;
}
/*Div Style*/
.container{
position: relative;
display: flex;
justify-content:space-around;
align-items: center;
height: 96vh;
background-color: #1e454b;
height:400px;
width: 80vw;
border-radius: 10px;
color: rgb(255, 255, 255);
margin-top: 100px;
}