body {

    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;

    line-height: 1.5;
    position: relative;

    padding: 20px;
    height: 100vh;

    padding-bottom: 60px;

}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
}

.top-titles {
    display: flex;
    flex-direction: row;

    width: 100%;
    justify-content: space-between;
}

.legend-holder {
    text-align: right;
}

.legend {
    display: block;
    width: 200px;

    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
}

.legend .gradient {
    background: gray;
    margin-top: 5px;
    height: 2rem;
}

.status {

    display: inline-block;
    padding: 5px;
    margin: 10px;
    border-radius: 3px;
    font-size: 1rem;

    vertical-align: middle;

    text-transform: uppercase;
    color: white;
    background-color: coral;

    transition: 0.25s;

}

.warning {

    position: fixed;
    z-index: 999;

    color: white;
    padding: 10px;
    border-radius: 3px;

    opacity: 0;
    transition: 0.25s;

}

#pausedWarning {
    bottom: 15px;

    z-index: 10;

    left: 15px;
    background-color: coral;
}

#connecting {

    background-color: #2B4162;
    bottom: 15px;
    right: 15px;

    z-index: 100;
    opacity: 1;

}

.middle-flex {
    display: flex;
    flex-flow: row wrap;
    width: 100%;
    justify-content: space-between;
}

#myDiv {
    height: 600px;
    width: 50%;

    min-width: 400px;

    margin: 10px 0;
    margin-bottom: 20px;

    border-radius: 5px;
    border: 2px solid #EEE;
}

.popular {
    display: flex;
    flex-flow: row wrap;
    align-items: center;

    padding: 20px;
    background-color: #EEE;
}

.popular div {
    margin: 0 20px;
}