﻿/* Container */
.container {
    margin-top: 10px;
    margin-bottom: 10px;
}

.mt-2em {
    margin-top: 2em;
}

.center-div {
    margin: auto;
    width: 50%;
}

/* Paragraph */
.center {
    text-align: center;
}

.left {
    text-align: left;
}

.right {
    text-align: right;
}

/* Link */
.back {
    color: black;
    display: flex;
    align-items: center;
}

    .back:hover {
        text-decoration: none;
    }

/* Other */
.push {
    margin-left: auto;
}

.heartbeat {
    display: inline-block;
    color: red;
}

/* JSON */
.string {
    color: green;
}

.number {
    color: darkorange;
}

.boolean {
    color: blue;
}

.null {
    color: magenta;
}

.key {
    color: red;
}