@charset "utf-8";

a{
    position: relative;
    text-align: justify;
    color: rgba(0, 0, 0, 0.781);
    text-decoration: none;
    font-size: 30px;
    width: 200px;
    height: 200px;
    top: 25%;

}

a:hover{
     color:rgba(92, 86, 255, 0.486) ;
     backdrop-filter: blur(10px);
}

div{
    background-color: rgba(6, 4, 102, 0.767);
    border-radius: 10px;
    transition: 0.5s;
    margin: 10px 8px 5px 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;   
}

div:hover{
     background-color: rgba(12, 9, 211, 0.63);
     box-shadow: 0px 0px 20px 2px rgba(85, 82, 255, 0.466);
     color:rgba(92, 86, 255, 0.486) ;
     backdrop-filter: blur(10px);
}