
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    background-color: #979afb;
}

#platform {
    box-align: center;
    width: 200px;
    height: 350px;
    background-color: aqua;
    transform: translate(100px) rotateX(55deg) rotateZ(45deg);
    border-radius: 16px;
    box-shadow: 1px 2px 10px rgb(192, 255, 255, 0.95), 
    44px 44px 24px rgb(192, 255, 255, 0.75);
    transition: 0.5s ease-in-out transform, 0.5s ease-in-out box-shadow;
}

#platform:hover {
    transform: translateX(100px) translateY(-24px) rotateX(55deg) rotateZ(45deg);
    box-shadow: 1px 2px 10px rgb(192, 255, 255, 0.95), 
    70px 70px 24px rgb(192, 255, 255, 0.25);
}