/* Universal change */
* {
    background-color: rgb(23, 151, 125);
    font-family: cursive;
}
/* Changed background colour for text */
p:nth-of-type(odd){
    background-color: rgb(0, 92, 93);
}
/* Changed text colour */
p:nth-child(odd) {
    color:darkturquoise;
}
/* Changed text colour */
p:nth-child(even) {
    color:darkturquoise;
}
/* Makes an image appear when hovering over "hello." */
#kegan:hover {
    background-image: url(assets/IMG_2396.jpg) ;
    width: 150px;
    height:150px;
}
