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

body {
    margin: 0;
    padding: 0;
}

header {
    background-color: #2db8d4;
    display: flex; /*set elements side by side */ 
    width: 320px; 
    padding: 8px;
}

#logo {
    height: 3rem;
    width: auto;
    flex: 1;
    position:absolute;
    top: 17px;
}

header div {flex: 3;} /*3 times more space for div than logo */

nav {
    width: 320px; /* fits in 320px mobile */
    margin: 0 auto; /* centered */
    height: 60px;
    padding: 8px;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
    position: relative;
}

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;
}

.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: #444;}

a:hover {text-decoration: underline;}

a:active {color: magenta;}




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

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

a:visited svg {fill: #444;}


@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: 52px;
    left: -6px;
    display: block;
    z-index: -1;
    height: 25rem;
    width: 4rem;
    background-size: contain;
    background-image: url('data:image/svg+xml,<svg viewBox="0 0 9.48 1.37" xmlns="http://www.w3.org/2000/svg"><path d="m7.92.95c.11.09.21.23.34.28.29.12.61.11.87-.07.11-.07.22-.23.24-.36.04-.18-.11-.33-.28-.35-.47-.07-.94-.16-1.41-.14-1.19.04-2.33.38-3.49.64-.94.22-1.89.44-2.86.4-.31-.01-.62-.09-.91-.17-.13-.04-.25-.15-.35-.26-.09-.11-.12-.25 0-.36.03.11.02.24.08.33.07.1.18.2.29.22.38.08.76.16 1.15.16.93.01 1.81-.26 2.71-.49.97-.25 1.93-.5 2.9-.7.58-.12 1.18-.11 1.74.16.16.08.31.19.42.32.18.21.14.44-.08.61-.28.23-.92.27-1.22.07-.17-.11-.2-.19-.15-.29z"/></svg>');
    background-repeat: no-repeat;
}


div {
    text-align: center;
    margin-top: 1.25rem;
    margin-left: 3.75rem;
    margin-bottom: 1px;
    font-size: 1.889rem;
    color: #fff;
}

h1 {
    color: #fff;
    margin-left: 26px;
}