#html {
    transition: transform 0.5s;
}


#html:hover {
    transform: rotate(45deg);
}




#css {
    transition: transform 0.5s;
}

#css:hover {
    transform: scale(1.5);
}