h1,h2,h3,h4,h5,h6 {
    /* font choice for titles and subtitles */
    font-family: "Saira", sans-serif;
    font-weight: 400;
    font-style: normal;
    color: rgb(70, 12, 2);
   
    margin-top: 1.5em;  /* usually more space on top than bottom */
    margin-bottom: 0.5em;
}

/* 16 pixels = 1rem = height of letter m of root element */
/* root element (ex: html tag) never changes */
/* EM vs REM = em is in the size of the current tag */
/* EM is proportional to your tag's text size */

body{
    /* font choice for all other parts of the page */
    font-family: Arial, Helvetica, sans-serif;
    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.1573em; }
p { font-size: 1em; }
small { font-size: .8642em}

main {padding-left: 1rem;}

aside {
    background-color: #ff8c00;
    margin: 1rem;
    padding: 1rem;
}


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

aside a:visited {
    color: rgb(72, 72, 75) /* looks faded, more boring */
}

aside a:hover {
    text-decoration: underline; /* add underline on mouse hover */
}

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

footer a:link {
    color: rgb(123, 149, 174);
    text-decoration: none; /* removes underline */
}

footer a:visited {
    color: rgb(114, 114, 125) /* looks faded, more boring */
}

footer a:hover {
    text-decoration: underline; /* add underline on mouse hover */
}

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

footer h4, footer h5 {
    color: rgb(67, 89, 161);
}

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

ul li {
    /* list items within the list */
    margin-bottom: 0.5rem;
}

footer {
    background-color: bisque;

    background-image: 
    url(bgimg/hot-air-balloon-svgrepo-com.svg),
    url(bgimg/sun-svgrepo-com.svg),
    url(bgimg/mountain-part-2-svgrepo-com.svg), 
    url(bgimg/mountain-part-2-svgrepo-com.svg);

    background-size: 
    50px,
    100px,
    200px,
    150px;

    background-repeat: 
    no-repeat,
    no-repeat,
    no-repeat,
    no-repeat;

    background-position:
    68% 10%,
    99% 10%,
    center,
    right;

    padding: 1rem 2rem 4rem 2rem;
} 