/*makes text white, makes background blue and adds padding*/
.style {
    color: white;
    background-color: blue;
    padding: 20px;
}
/*sets font to arial and alligns font to center*/
.style h1 {
    font-family: Arial;
    text-align: center;
}
/*sets font size and adds underline decoration*/
.style p {
    font-size: 20px;
    text-decoration: underline;
}
/*white border around image*/
.style img {
    border: 5px solid white;
}