/* General styling */
body {
    margin: 0;
    background-color: rgb(240,128,255);
    background-image: linear-gradient(rgb(248,192,255),rgb(240,128,255));/*webkit, solid color fallback*/
    background-repeat: no-repeat;
    font-family: "Hiragino Maru Gothic ProN","Trebuchet MS",sans-serif;/*get Google substitute font*/
}
body * { box-sizing: border-box; }





/* Content styling */
#master { margin: auto; width: 628px; }

h1 {
    margin: 0; padding: 8px; text-align: center;
    color: white; background-color: rgb(112,0,128);
    font-family: "Hiragino Mincho ProN","Georgia",serif;/*get Google substitute font*/
}

#text {
    padding: 8px;
    background-image: linear-gradient(rgba(255,255,255,0),rgba(255,255,255,1));/*webkig, solid color fallback*/
}
#text p { margin: 0; padding-bottom: 8px; }

.bold { font-weight: bold; }
