body {
    background-color: #34495e;
}

h1, p, h2 {
    color: white;
}

.big-title {
    font-size: 2em;
}

.title {
    height: auto;
    text-align: center;
    margin-top: 20px;
}

hr {
    max-width: 90%;
    margin: 10px auto;
    color: white;
}

.center {
    text-align: center;
}

.border-right {
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.box {
    border-radius: 10px;
    background-color: #2c3e50;
}

.padding {
    padding: 10px;
}

.val-title {
    font-weight: bold;
    color: white;
    font-size: 1.5em;
    margin-bottom: 10px;
}

.val-value {
    font-size: 2em;
    color: #bdc3c7;
}

.hr-mobile {
    display: none;
}

@media screen and (max-width: 768px) {
    .big-title {
        font-size: 3em;
    }
    h2 {
        font-size: 1em;
    }
    .val-title {
        font-size: 1em;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .val-value {
        font-size: 1.5em;
    }
    .padding {
        padding: 10px;
    }
    .hr-mobile {
        display: block;
    }
}

img {
    max-width: 50%;
}

.chart-section {
    max-width: 500px;
    margin: 10px auto;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
}

.chart-section canvas {
    max-height: 400px;
}

.chart-section-large {
    max-width: 1000px;
    margin: 10px auto;
    background-color: rgba(255, 255, 255, 0.75);
    border-radius: 10px;
}

.speed_warning {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.btn-primary {
    background-color: white;
    border: 1px solid white;
    color: #34495e;
}

.btn-primary:hover {
    background-color: #34495e;
    border: 1px solid white;
    color: white;
}

.chart-val {
    text-align: left;
    padding-left: 30px;
    color: #666666;
}

.dot {
    margin-left: 5px;
    height: 25px;
    width: 25px;
    border-radius: 50%;
    display: inline-block;
    top: 2px;
    position: relative;
}

.green {
    background-color: #2ecc71;
}

.red {
    background-color: #e74c3c;
}