*{
    margin:0;
    padding: 0;
}
body{
    overflow:hidden;
}
section{
    position: absolute;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background:linear-gradient(to bottom, #3dc849,#dff1ff);
}
section::before{
    content:'';
    position:absolute;
    bottom:0px;
    width:100%;
    height:50%;
    
    z-index:1;
    backdrop-filter: blur(5px);
    border-top:1px solid rgba(255,255,255,0.5);

}
section .color{
    position: absolute;
    filter:blur(150px);
}
section .color:nth-child(1){
    background: #0fa71c;
    width: 600px;
    height: 600px;
    top: -350px;
}
section .color:nth-child(2){
    background: #00d2ff;
    width: 500px;
    height: 500px;
    bottom: -150px;
    left:100px;
}
section .color:nth-child(3){
    background: #fffd87;
    width: 300px;
    height: 300px;
    bottom: 50px;
    right:0px;
}
ul{
    position:relative;
     display:flex;
    z-index:2;
}
ul li{
    position:relative;
    list-style:none;
    margin:10px;
}
ul li a{
    position:relative;
    width:300px;
    height:350px;
    border-radius:10px;
    display:flex;
    justify-content:center;
    align-items:center;
    text-decoration:none;
    color:#fff;
    font-size:2em;
    border:1px solid rgba(255,255,255,0.4);
    border-right:1px solid rgba(255,255,255,0.2);
    border-bottom:1px solid rgba(255,255,255,0.2);
    box-shadow:0px 5px 45px rgba(0,0,0,0.1);
    backdrop-filter:blur(2px);
    transition:0.5s;
    overflow:hidden;
}
ul li a img{
    height: 90%;
    width: 90%;
    padding-right: 2rem;
}
 ul li a:hover{
    transform: translateY(-20px);

 }
 ul li a:before{
    content:'';
    top:0;
    left:0;
    width:50px;
    height:100%;
    background: rgba(255,255,255,0.5);
transform: skewX(45deg) translateX(150px);
transition:0.5s;
 }

 ul li a:hover::before{
    transform: skewX(45deg) translateX(-150px);
 }
 #dataLink{
    background-color: #fff;
    text-align: center;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    width: 300px;
    padding-top: 4px;
    height: 30px;
    font-weight: bold;
    font-size: large;
    border-radius: 10px;
 }