h1{
    color: #912c2c;
    text-align: center;
    text-decoration: underline;
}
h2{
    color: rgb(136, 56, 56);
    text-align: left;
    text-decoration: overline;
}
h3{
    color: red;
    text-align: right;
    text-decoration:underline overline;
}
p{
    color:cornflowerblue;
}
span{
    color:deeppink;
    font-weight: bold;
    text-decoration: line-through;
}
.center{
    text-align: center;
}
.justify{
    text-align: justify;
}
.no-decoration{
    text-decoration: none;
}
body{
    background-color: rgb(243, 227, 206);
}
