h1,h2,h3,h4,h5,h6 {
  /* font choice for titles and subtitles */
  font-family: "UnifrakturMaguntia", cursive;
  font-weight: 400;
  font-style: normal;
  color: black;

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

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

body {
    /* font choice for all other parts of the page */
    font-family: Arial,Arial, Helvetica, sans-serif;
    font-size: 1 rem; /* 16px*/
    color:white;
    background-color: gold;

    header {
  display: flex; /* puts things side-by-side */
  height: 2rem;
  line-height: 2rem; /* verticale align text */
}

header img {margin-right: 0.5rem;}


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

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

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

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

aside a:visited {
  color: rgb(46, 46, 46); /* 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: white;
  text-decoration: none; /* remove underline */
}

footer a:visited {
  color: rgb(46, 46, 46); /* 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: white;
}

h1 { font-size: 2.3em; margin-left: 1rem }
h2 { font-size: 2.0019em; }
h3 { font-size: 1.7424em; }
h4 { font-size: 1.5166em; }
h5 { font-size: 1.32em; }
h6 { font-size: 1.1489em; }
p { font-size: 1em; }
small { font-size: .8704em; }

main {padding-left: 1rem;}

footer {
    background-color: skyblue;
    background-image: url(bgimg/forest-svgrepo-com.svg),
    url(bgimg/hot-air-balloon-svgrepo-com.svg),
    url(bgimg/airplane-svgrepo-com.svg),
    url(bgimg/sun-svgrepo-com.svg);
    background-size: 40px, 
100px,
60px,
72px;
    background-repeat: repeat-x, 
  no-repeat,
  no-repeat,
  no-repeat;
    background-position: bottom, 
  66% 49%,
  95% 7%,
  34% -1%;
    padding: 1rem 3rem 4rem 2rem;
}


