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

body {
    background-image: url(../img/ian-unsplash.jpg);
    margin: 0;
    padding: 0;
    background-size:150%;
    background-repeat: no-repeat;
    object-fit: contain;
   

}

h1
{
    margin: 1rem;
    color: aliceblue;
    font-size: x-large;
    text-shadow:black 0 2px;

}
header div
{
    color: azure;
    font-size:x-large;
    margin: 1rem;

}

header {
    background-color: #2db8d4;
    display: flex;  /* set elements side-by-side */
}

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

header div 
{
flex: 4;
margin-left: auto;
}  /* 3 times more space for div than logo */

nav {
    background-color: #c4e8ef9c;
    width: 400px;
    margin: 0 auto;
    height: 67px;
    padding: 0;
}

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;

}

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

a:hover {text-decoration: underline;}

a:active {color: rgb(255 255 255);}




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

a:link svg {
    fill: #fff;
}

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: rgb(255 255 255);}


li.currentPage::before
 {
    position: absolute;
    content: " ";
    top: 50px;
    left: 17px;
    display: block;
    height: 1rem;
    width: 1rem;
    background-size: contain;
  background-image: url('data:image/svg+xml,<%3Fxml version="1.0" encoding="iso-8859-1"%3F><!-- Uploaded to: SVG Repo, www.svgrepo.com, Generator: SVG Repo Mixer Tools --><svg fill="%23000000" height="800px" width="800px" version="1.1" id="Layer_1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 512 512" xml:space="preserve"><g><g><path d="M490.667,234.667H21.333C9.551,234.667,0,244.218,0,256c0,11.782,9.551,21.333,21.333,21.333h469.333c11.782,0,21.333-9.551,21.333-21.333C512,244.218,502.449,234.667,490.667,234.667z"/></g></g></svg>')
 }
 li.support.currentPage::before
 {
    top: 46px;
    left: 17px;
 
 }