/* main {}*/
h1,h2,h3,h4,h5,h6 {
  font-family: "Orbitron", sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-left: 1rem;
  font-size: 1.2rem;
}

body { 
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1rem;
    color: black;
}

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

header img { margin-right: 0.5rem;}



main a:link {
    color: red;
    text-decoration: none; /* removes underline */
}

main a:visited {
    color: rgb(0, 0, 255); /* looks faded, more boring */
}

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

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

aside {
    background-color: rgb(34, 255, 0);
    margin: 1rem; 
    padding: 1rem;
}

ul {
    /* unordered list */
    list-style-type: 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; /* 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: white;
    text-decoration: none; /* removes underline */
}

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



footer {
	background-color: rgb(15, 159, 255);
	background-image: url(bgimg/sun-svgrepo-com.svg), url(bgimg/hot-air-balloon-svgrepo-com.svg), url(bgimg/mountain-part-2-svgrepo-com.svg), url(bgimg/airplane-svgrepo-com.svg);
	background-size: 50px, 75px, 225px, 75px;
	background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
	background-position: 47% 0rem, 100% 6rem, 95% 10rem, 60% 5rem;
	padding: 1rem 2rem 4rem 2rem;
}



