* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background-color: black;
}

h1 {
    text-align: center;
    margin-top: 0;
}

#heading {
    height: 100px;
    font-size: large;
}

#title {
    text-align: center;
    font-size: medium;
}

#controllerStatus {
    text-align: center;
    font-size: large;
}

#temperature {
    color: rgb(255, 0, 0);
}

#setpoint {
    color: rgb(0, 0, 255);
}

#internal {
    color: rgb(255, 166, 0);
}

#output{
    color: rgb(0, 128, 0);
}