html, body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
    background-color: rgba(247, 247, 247, 0.144);
    box-sizing: border-box;
}
#mainFrame\:\:actual {
    height: 50%;
    background-color: rgba(129, 129, 129, 0.171);
    border: 6px solid black;
    border-radius: 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
} #mainFrame\:\:actual p {
    background-color: blue;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
    margin: 5px 0;
    flex-basis: 100%;
    max-width: 100%;
}
#subFrame\:\:actual {
    height: 48%;
    background-color: rgba(129, 129, 129, 0.171);
    border: 6px solid black;
    border-radius: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#addCubeButton\:\:actual {
    background-color: lightgrey;
    width: 80px;
    height: 80px;
    border: 3px solid black;
    border-radius: 20px;
    margin: 5px;
    font-size: 140%;
    font-weight: bold
}
.cube\:\:actual {
    background-color: grey;
    width: 50px;
    height: 50px;
    margin: 5px;
}
#objectIdFinder {
    font-weight: bold;
    font-family: sans-serif;
}