div.trans {
    width: 200px;
    height: 100px;
    background-color: black;
    border-radius: 10px;
}

div.trans {
    border-radius: 10px;
    transition: ease-in-out 1s;
    color: blanchedalmond;
    vertical-align: bottom;

    display: flex;
    justify-content: center;
    align-items: center;

    margin-bottom: 5px;
    
}

div.trans:hover {
    border-radius: 2px;
    transition: ease-in-out 0.5s;
    transform: scale(1.3);
    transform: rotate(90deg);
}

#scale:hover {
    transform: scale(1.2)
}

#rotate:hover {
    transform: rotate(5deg)
}

#translate:hover { 
    transform: translate(10px, 5px);
}

#skew:hover {
    transform: skew(-10deg, 0deg);
}

