body {
    background-color: #eeeeee;
}

/* Título */
h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 35px;
    text-transform: uppercase;
    color: white;
    text-shadow: 3px 3px 5px black;
}

/* Efeito ao passar o mouse no título */
h1:hover {
    color: blue;
}

/* Parágrafos */
p {
    font-family: 'Roboto', sans-serif;
    font-size: 25px;
    text-indent: 20px;
    line-height: 20px;
    text-align: justify;
    background-color: #f5f5f5;
    padding: 15px;
}

/* Palavras sublinhadas */
span {
    text-decoration: underline;
}

/* Efeito ao passar o mouse nos parágrafos */
p:hover {
    background-color: #d6eaff;
}