/* CSS Document for Homework 4
Student: Darrcelle Jackson
Course: ITWP 1050
File: styles.css */

/* centers and sets the background color */
body {
    text-align: center;
    background-color: #cdc794;
}

/* sets the text color and skews the h1 element */
h1 {
    color: #462500;
    transform: skew(10deg);
}

/* sets the text color */
h2 {
    color: #462500;
    background: transparent;
}

/* rotates and translates the h2 element */
h2 {
    transform: rotate(-6deg) translate(25px);
}

/* scales and rotates the image element */
img {
    transform: scale(0.9);
    transform: rotate(8deg);
}