/* custom bullet list */
ul {
    list-style-type: none;
    padding: 0 0 0 16px;
}

ul li {
    padding-left: 32px;
    background-image: url("../images/star_clipart.png");
    background-position: 0 0;
    background-size: 16px 16px;
    background-repeat: no-repeat;
}

/* Active links */

a:active {
    border: 10px dotted blue;
    border-radius: 20px;
    text-decoration: overline red;
}


/* Hovered links */

a:hover {
    border: 2px dotted pink;
    border-radius: 5px;
    text-decoration: underline red;
}


/* Focused links */

a:focus {
    border: 10px dotted blue;
    border-radius: 20px;
    text-decoration: overline red;
}


/* Visited links */

a:visited {
    border: 6px dotted gray;
    border-radius: 15px;
    text-decoration: line-through;
}

p {
    font-family: "Figtree", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
}