/* External css - best */

h4{
    /* color: crimson;
    font-size: 32px; */
    text-transform: uppercase;
    text-align: center;
    text-decoration: underline;
    letter-spacing: 2px;
    color: orangered;
    font-family: 'Playfair Display', serif;
    font-weight: 400;
}

body{
    font-family: Roboto, arial, helvetica
}

img{
    height: 200px;
    width: 200px;
    object-fit: cover;
    background-color: #e1c4ff;
}

h5{
    font-weight: normal;
    line-height: 1.5;
    background-color: purple;
    color: white;
    border-radius: 10px;
}



div{
    background-color: #e1c4ff;
    color: rebeccapurple;

}

/* id selector - It starts with # */
/* Unique to that html */
#topic-heading{
    text-align: center;
    font-style: italic;
    background-color: rgb(121, 255, 106);
    color: teal;
}

/* class selector - It starts with . */
.quote{
    font-weight: bold;
    font-size: 32px;
    /* color: coral; */
    /* color: rgb(255 127 80); */
    /* color: rgb(64 141 208); */
    color: hsl(284deg 63% 43% / 88%);
     /* color: #9e29b3; */
     font-style: italic;
}

.p1{
    color: orangered;
    font-size: 24px;
}

.p2{
    color: orchid;
    font-weight: bold;
    text-transform: uppercase;
}

ol{
    list-style: lower-alpha;
}

ul{
    list-style-type: circle;
}
/* Color formats 
1. color name
2. RGB - Red Green Blue
3. HSLA - Hue Saturation Lightness - Best 
4. Hex  - Hexadecimal - old
*/