body {
    color: whitesmoke;
    background-color: rgb(90, 90, 90);
}


#platform {
    width: 200px;
    height: 350px;
    background-color:rgb(59, 59, 59);
    transform: translate(100px) rotateX(55deg) rotateZ(45deg);
    border-radius: 16px;
    box-shadow: 2px 2px 10px rgba(171, 171, 171, 0.46), 30px 30px 20px 12px rgba(141, 141, 141, 0.421) ;
    transition: 800ms ease-in-out transform, 0.8s ease-in-out;
}

#platform:hover {
    transform: translateX(100px) translateY(-24px) rotateX(55deg) rotateZ(45deg);
    box-shadow: 
    2px 2px 10px rgba(171, 171, 171, 0.46), 
    54px 54px 20px 0px rgba(141, 141, 141, 0.299) ;
}