body {
    font-family: sans-serif;
    background-image: url("media/stars.gif");
}

#mainDiv {
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-around;
}

.boxes {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    margin-top: 1%;
    margin-bottom: 15px;
    width: 25%;
}

.boxes div,
#botboxes div,
#ratbox {
    border: black 3px solid;
    padding: 1%;
    background: white;
}

#ratbox {
    position: absolute;
    left: 5px;
    top: 5px;
}

#botboxes {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
}

#codeDiv {
    width: 50%;
}

#CodeBox {
    width: 95%;
    margin-bottom: 2%;
}

#titleDiv {
    flex-basis: 30%;
    width: 50%;
}

#titleDiv div {
    margin-top: 2%;
}

#rgb {
    animation: color-change 1s infinite;
}

@keyframes color-change {
    0% { color: red; }
    20% { color: orange; }
    40% { color: yellow; }
    60% { color: green; }
    80% { color: blue; }
    100% { color: magenta; }
}