h1{
    font-size: 20px;
}
/* hexidecimal way of customizing color */
.blue{
    color: #1332cf;
}
.purple{
    color: purple
}
.red{
    color: red
}

.alignLeft{
    text-align: left;
}

.alignCenter{
    text-align: center;
}

.alignRight{
    text-align: right;
}

.white{
    color: white;
}

.blackBackground{
    background-color: black;
}