* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    text-align: center;
    padding: 20px;
}

a:link {
    transition: color 1s;
}

#platform {
    width: 200px;
    height: 350px;
    background-color: rgba(96, 96, 96, 0.95);
    border-radius: 16px;
    box-shadow: 1px 2px 10px rgba(204, 204, 204, 0.95),
        44px 44px 24px rgba(204, 204, 204, 0.25);
    transition: 0.5s ease-in-out 0.1s;
    transform: translate(100px) rotateX(55deg) rotateZ(45deg);
}

#platform:hover {
    transform: translateX(100px) translateY(-24px) rotateX(55deg) rotateZ(45deg);
    box-shadow: 1px 2px 10px rgba(204, 204, 204, 0.95),
        70px 70px 24px rgba(204, 204, 204, 0.15);
}