/* external styles for wk3 practice */
/*====================================================*/


/*css rule*/
body {
    background-color: rgb(26, 178, 233);
    color:#EEE; /*hex code */
    font-family: Verdana;
    text-align:center; 
    
}


h1 {
    background-color: rgba(6, 255, 226, 0.979);
    color: #111;
    border:5px dashed blue;
    
}   
/* rule with a contectual selector/descendant selector */

h1 span {
    font-style: italic;
    color: rgba(0, 155, 198, 0.766)98, 0.766);
                 

}
article {
    border: 4px solid rgb(4, 14, 4);
    min-height: 3em; 
    display:flex;
    flex-flow: row wrap;
}
h2{
    text-align:center;
    font-weight:normal;
    text-transform:lowercase;
    flex:1 1 100%;

}
p {
    font-family: times;
    color: #FFC;
    text-indent: 1em;
    line-height: 1.6;
    flex:1 1 30%;
    border: 4px solid rgb(0, 12, 144);
    margin: 50px;
}