h1,h2,h3,h4,h5,h6 {
   /* set all headers to our fancy google font */
    font-family: "Uncial Antiqua", cursive, system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 1rem;/* adjust to taste, in a small window */

    margin-top: 1em;  /* usually more space on top than bottom */
    margin-bottom: 0.25em;
}

/* 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; /* put things side by side*/
background-color: lightseagreen; /* fill */
height: 2rem; /* 1rem = 16px */
line-height: 1.70rem; /* line-height of text = height of box => vertically centered text */
color: white; /* text color */
border-bottom: 4px solid black; /* required: width + type + color */ 
}

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 {
  padding: 1rem;
  margin: 1rem;
  color: #ffffff;
  background-color: lightseagreen;
  
}

/* LoVeHA RULE */
aside a:link {
  color:rgb(1, 66, 62);
  text-decoration: none ; /* removes underline */

}

aside a:visited {
  color: #578279; /* makes a clicked on link dull */
}

aside a:hover {
  text-decoration: underline; /* adds underline when mouse hovers */
  color: #31ffc1;

}

aside a:active {
  color: rgb(255, 0, 255); /* when you click down it will be a very bright and attractive color */
}

footer a:link {
  color:rgb(178, 248, 243);
  text-decoration: none ; /* removes underline */

}

footer a:visited {
  color: #6e9c92; /* makes a clicked on link dull */
}

footer a:hover {
  text-decoration: underline; /* adds underline when mouse hovers */
  color: #00ffb3;

}

footer a:active {
  color: rgb(255, 0, 255); /* when you click down it will be a very bright and attractive color */
}

footer h4, footer h5 {
  color: white;
}

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

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


header p {
    font-family: "Macondo", cursive, system-ui;
    font-weight: 400;
    font-style: normal;
    font-size: 1.2rem;
    margin-left: 1rem; /* push away from the logo */
 
}

footer  
{
background-color: rgb(4, 76, 74);
background-image: url(bgimg/bird.svg), url(bgimg/bird.svg), url(bgimg/bird.svg), /*foreground*/url(bgimg/negative-svgrepo-com.svg),
url(bgimg/mountain-part-2-svgrepo-com.svg), url(bgimg/sun-svgrepo-com.svg), url(bgimg/negative-svgrepo-com.svg), url(bgimg/negative-svgrepo-com.svg), url(bgimg/mountain-svgrepo-com.svg),
linear-gradient(to bottom, black, lightseagreen); /*background*/
background-size: 50px, 50px, 50px, 56px, 178px, 150px, 53px, 53px, 150px, 100%;
background-repeat: no-repeat, no-repeat;
background-position: 135px 170px,80px 65px, 215px 115px, 225px 200px, 0px 259px, 215px -35px, 135px 270px, 7px 221px,170px 271px, center;

padding: 1rem 2rem 4rem 2rem; /*clockwise, starts at noon */


}