

.Title {
    font-family: Arial;
    color: red;
    font-weight: bold;
    font-size: 36px;
    text-align: center;
}
.Topic {
    text-align: center;
    font-family: Arial;
    font-size: 20px;
    font-weight: bold;
    color: blue;
}
.Text{
    font-family: Verdana, Geneva, sans-serif; The reason I put multiple fonts is because if the users computer does not have the first font, then it will apply the second font, and so on.
    font-size: 16px;
    font-style: normal;
    color: black;
	color:darkgreen; !The reason I inserted two color rules (green then black ) is to demonstrate that the second color will take precedence over the first color.
}
.Link{
    font-family: Arial;
    color: purple;
    font-size: 16px;
    text-align: center;
}