h1 {
    color:#C0c0c0;

 /* color = rgb, code,name */

    /* typography */
    font-size: 100px;
    font-weight: 600;
    font-style: oblique;
    font-family: 'Inter', sans-serif;

    /* give an option of fonts and backups to use, and then give the generic family as a last backup */
    text-decoration: underline;

}

a {
    color:darkslateblue;
    text-decoration: none;
    font-family: "katarine-web", sans-serif;
    font-weight: 600;
    font-size: 25px;
    font-style: normal;

/* background */
background:green;

/* stroke --> border thinkness, type of line, color */
border: 2px solid yellowgreen;

color:white;


/* padding */
/* top, right, bottom, left 
padding: 5px 15px 5px 15px; */

/* top/bottom right/left*/
/* padding: 5px 15px; */

/* all */
/* padding: 10px; */

padding-top: 5px;
padding-bottom: 5px;
padding-left: 15px;
padding-right: 15px;

/* round corners */
border-radius: 8px;


}


/* lorem+number */
/* line height = leading */

p {
    line-height: 22px;
    font-size: 12px;
    font-weight: 400;
    font-family: 'inter', sans-serif;
    
}