body { 
    margin: 0;
    overflow: hidden;
} 

#graph-container {
    height: 100vh;
}

.graph-data {
    position: absolute;
    bottom: 0px;
    left: 0px;
    padding: 5px;
}

#graph-data-description {
    font-size: 15px;
    color: white;
}

#graph-data-description svg {
    padding-right: 5px;
}

.dg div {
    font-size: 15px;
}

.logo {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100px;
    padding: 10px;

}

.logo img {
    width: 200px;
}

#stats {
    color: white;
    position: absolute;
    bottom: 0px;
    right: 0px;
    padding: 5px;
}

#spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    /* bring your own prefixes */
    transform: translate(-50%, -50%);
    color: white;

    /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 1);*/

    animation: pulse 2s infinite;

    opacity: 1;
    visibility: visible;
    transition: opacity 1000ms, visibility 1000ms;
}

#popup {
    position: absolute;
    top: 10%;
    left: 0px;
    width: 100%;
    height: 90%;
}

#closePopup {

    position: absolute;
    top: 0px;
    width: 100%;
    text-align: center;
}

iframe {
    border: none;
    width: 1521px;
    height: 100%;
    margin: auto;
    display: block;
}

a, a:link, a:visited, a:active {
    color: black;
}

a:hover {
    color: grey;
}





@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.90);
        /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.7);*/
    }

    70% {
        transform: translate(-50%, -50%) scale(1);
        /*box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);*/
    }

    100% {
        transform: translate(-50%, -50%) scale(0.90);
        /*box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);*/
    }
}