/* CSS document used for homework 4
Author: Jesse Pence
Course: ITWP 1050
File: styles.css
*/
#Rodney {
    transform: translate(34.5rem, 2.5rem) scale(1.5);
}
#Lolbit {
    transform: rotate(45deg);
}
h1 {
    transform: skew(-15deg);
    text-align: center;
    background: lightgrey;
    transition: background-color 500ms,
                transform 500ms 500ms;
}

#thumbnail {
    transform: translate(5px, 10px);
}

#validation {
    text-align: center;
}

body {
    text-align: center;
}


h1:hover {
    background: red;
    transform: scale(1.1);
}