.loading-element{
width: 30px;
height: 30px;
background-color: #333;
border-radius: 50%;
animation: loading-animation 1s linear infinite;
}
.shattered-element{
width: 50px;
height: 50px;
background-color: #333;
clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
animation: shattered-animation 2s linear infinite;
}
.reassembly-element{
width: 30px;
height: 30px;
background-color: #333;
animation: reassembly-animation 1s linear infinite;
}