body {
    color: #800;
    font-size: 1.2em;
    width: 966px;
    margin: auto;
    background: linear-gradient(#0f8503 10%, #ffffff);
}

.window {
    margin: 2em;
    background: #f3f3f3;
    border: #880000 2px solid;
}
.title-bar {
    align-items: center;
    background: #fca;
    color: #800;
    display: flex;
    justify-content: space-between;
}
.title-bar-text {
    margin-left: 0.3rem;
    font-weight: 700;
    letter-spacing: 0;
    margin-right: 24px;
}

#container {
    display: flex;
    background-color: #ffffff;
}

#canvasContainer {
    width: 15em;
    flex: 1;
    text-align: center;
    margin: 2rem;
}

#optionsContainer {
    margin: 2rem;
    text-align: left;
    display: flex;
    flex-direction: column;

}
.options_title{
    font-size: 1.2rem;
    margin:0.2rem;
}
#avatarCanvas{
    position: relative;


}
#canvasContainer>h3 {
    font-size: 2rem;
}

/* Style for category and option images */
.category {
    display: flex;
    flex-direction: column;
}
.options{
    width: 30rem;
    overflow-x: auto;
    display: flex;
}

.category img {
    cursor: pointer;
    width: 2.5rem;
    height: 2.5rem;
    border: 2px solid transparent;
}

.category img.selected {
    border-color: #0a7e00;
}
