html { font-size: 100%; margin: 0; padding: 0; }

body {
    margin: 0;
    padding: 0;
    background-image:url("../img/kelly-sikkema-9yofm7L1AE8-unsplash.jpg") ;
    background-size: 200%;
    background-repeat: no-repeat;
}

header {
    background-color: #2db8d4;
    display: flex; 
    color: aqua; 
    align-items: center;/* set elements side-by-side */
    font-size: 1.5rem;
    

}

h1{color:aliceblue;
    position: relative ;
    top:0rem;
    left:1rem;
}



#logo {
    height: 3.5rem;
    width: auto;
    flex: 1;  
    padding: 3px;
}

header div {flex: 3;
flex: 3;
position: relative;
top: -2px;
right: -39px; /* 3 times more space for div than logo */
}
nav {
    width: 300px;  /* fits in 320px mobile */
    margin: 0 auto;  /* centered */
    height: 60px;
    padding: 0;
    background-color: #C96E066F;
}

nav ul.navigation {
    list-style-type: none;
    position: relative;  /* absolute positioning calculated from top/left of this box */
    margin: 0 auto;
    padding: 0;
}

.icon {
    height: 50px;
    width: 50px;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 1px;
}

.icon svg {
    display: block;
    width: 100%;
    height: auto;
    fill: #009fff;
}

.home { 
    left: 5px;
    color:orange
}

.download {
    left: 65px;
}

.upload {
    left: 125px;
}

.support {
    left: 185px;
    top: 0.325rem;
}

.support span {
    top: -0.6rem;
    left: -0.25rem;
}

.faq {
    left: 245px;
}


a span {
    display: block;
    width: 100%;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 0.55rem;
    position: relative;
    top: -0.3rem;
}





/* =========== LoVeHA Rule for Text Links =========== */

a {
    position: relative;
}

a:link {
    color: #009fff;
    text-decoration: none;
}

a:visited {color: orange;}

a:hover {text-decoration: underline;}

a:active {color: magenta;}




/* =========== LoVeHA Rule for SVG Links =========== */

a:link svg {
    fill: #009fff;
}

a:visited svg {fill: orange;}


@keyframes wiggle {
    0% { transform: rotate(0deg); }
    40% { transform: rotate(4deg); }
    95% { transform: rotate(-4deg); }
    100% { transform: rotate(0deg); }
}

a:hover svg  {
    animation: wiggle 0.5s infinite;
}

a:active svg {fill: magenta;}


li.currentPage::before {
    position: absolute;
    content: " ";
    top: 47px;
    left: 3px;
    display: block;
    z-index: -1;
    height: 0.5rem;
    width: 0.5rem;
    background-size: contain;
    background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="utf-8"%3F><svg version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 226 253" style="enable-background:new 0 0 226 253;" xml:space="preserve"><style type="text/css">.st0{fill:%23F26921;}</style><polygon class="st0" points="214.74,123 18.63,236.22 18.63,9.78 "/></svg>');
}