html {
    box-sizing: border-box;
    font-size: 16px;
    overflow: hidden;
}

*, *:before, *:after {
    box-sizing: inherit;
}

body, h1, h2, h3, h4, h5, h6, p, ol, ul {
    margin: 0;
    padding: 0;
    font-weight: normal;
}

ol, ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* END RESET */

body {
    height: 100vh;
    background: rgb(235,69,129);
    background-image: radial-gradient(closest-side at 50% 85%, rgba(235,69,129,1) 0%, rgba(142,56,87,1) 98%);
    font-family: citrus-gothic-solid, sans-serif;
}
header h1 {
    position: absolute;
    top: 7px;
    left: 10px;
    color: rgba(255,255,255,0.9);
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
nav {
    position: absolute;
    top: 12px;
    right: 0px;
    text-align: right;
    z-index: 100;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
nav ul {
    list-style: none;
}
nav li {
    display: inline-block;
    margin-right: 15px; /* add spacing between items */
}
nav h2 {
    display: block;
    color: rgba(255,255,255,0.7);
}
.nogap {
    margin-right: 4px;
}
nav a { 
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}
nav a:hover, nav a.currentpage { 
    display: block;
    color: rgba(255,255,255,1);
    border-bottom: 1px solid white;
}

#chartdiv {
    margin-top: 50px;
    width: 98%;
    height: 88vh;
    /*margin-bottom: 50px;*/
    max-width:100%
}


#info {
    position: absolute;
    z-index: 10;
    bottom: 0px;
    left: 10%;
    width: 80%;
    height: 20px;
    font-family: sans-serif;
    font-size: 0.8em;
    text-align: center;
    letter-spacing: 0px;
    font-weight: normal;
    color: rgba(255,255,255,0.5);
    -webkit-user-select: none;
    -ms-user-select: none; 
    user-select: none; 
}
#info a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    cursor: pointer;
}
#info a:hover {
    color: rgba(255,255,255,0.9);
    cursor: pointer;
}

#logo {
    position: absolute;
    bottom: 5px;
    right: 5px;
    height: 7%;
    text-align: right;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
#logo a {
    cursor: pointer;
}
#logo img {
    height: 100%;
}