#test
{
    border: ridge cyan;
    border-width: 4px;
    width: 200px;
    height: 200px;
    background-color: red;
    position: absolute;
    top: 30%;
    left: 20%;
    transition: all 2s;
}

#test:hover
{
    background-color: blue;
    transform: scale(4) rotate(7200deg);
}
