h1,h2,h3,h4,h5,h6{
    /* font choice for title and subtitle */
    font-family: pacifico, system-ui;
    font-weight: 400;
    font-style: normal;
    color: black;

    margin-top: 1em; /*  usually more space on top than bottom */
    margin-bottom: 0.25em;
}
/* 16 pixels is = 1rem = heightof letter m */
/* root element (ex: html tag) never changes */
/*  EM vs REM = em is in the size of the current tag */
/*  EM is your tag's text size */

body {
    font-family: cursive;
    font-size: 1rem;
    color: black;
}

header {
    display: flex;
    height: 2rem;
    line-height: 2rem;
}
header img { margin-right: 0.5rem;}

h1 { font-size: 2.25em; }
h2 { font-size: 1.9656em; }
h3 { font-size: 1.7171em; }
h4 { font-size: 1.5em; }
h5 { font-size: 1.3104em; }
h6 { font-size: 1.1447em; }
p { font-size: 1em; }
small { font-size: .8736em; }

main {padding-left: 1rem;}

aside {
    background-color: aquamarine;
    margin: 1rem;
    padding: 0.25rem;
}
/* LoVeHA RULE*/
aside a:link {color: black;
text-decoration: none;
/* removes underline */
}

ul {
    /*  unordered list */
    list-style: disc;
    padding-left: 2rem;
}

aside a :visited {
    color: rgb (72, 72, 75);
}

aside a:hover {
    text-decoration: underline;
}

aside a :active {color: magenta; /* very in your face */

}
aside a:link {color: black;
text-decoration: none;
/* removes underline */
}

ul {
    /*  unordered list */
    list-style: disc;
    padding-left: 2rem;
}

footer a :visited {
    color: rgb (72, 72, 75);
}

footer a:hover {
    text-decoration: underline;
}

footer a:link { color: black;}

footer :active {color: magenta; /* very in your face */

}
footer h4, footer h5 {
    color: white;
}

ul li {
    /* list items within the list*/
    margin-bottom: 0.5rem;
}
footer {
    /* font choice for all other parts of the page */
    background-color: rgb(138, 201, 208);
    background-image:
    url(bgimg/sun-svgrepo-com.svg),
    url(bgimg/hot-air-balloon-svgrepo-com.svg),
   url(bgimg/bird.svg);

    background-size:
    100px,
    100px,
    75px;

    background-repeat:no-repeat,no-repeat;
    background-position: 100% 50%,95%,50%;
    padding: 1rem 2rem 4rem 2rem; /* clockwise, starts at noon*/
}