@charset "utf-8";

p{
    color: #999;
}

p.blue{              /* pはタグ */
    color: #0bd;   /* クラスは.（ピリオド） */
}


#orange{
    color: #fa2;   /* IDは＃（ハッシュ） */
}

.text-center{
    text-align: center;
}

.small{
    font-size: small;
}

#main{
    width: 300px;
    font-size: large;
    background-color: #0bd;   /* IDとクラスを同時に記述する場合、プロパティを被らないようにする。 */
}

.center{
    margin: 0 auto;
}

#blue{
    color: #0bd;
}

.orange{
    color: #fa2;   /* IDが優先される*/
}



/*  */