body{
    background-color: #333;
}

#codeArea{
    background-color: #000000;
    color: #ffffff;
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px;
    white-space: pre;
    word-wrap: normal;
    overflow: auto;
    border: 1px solid #000000;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    width: 99%;
    resize: none;
    margin-top: 1%;
    margin-bottom: 1%;
}

.textareaManager{
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 2%;
    margin-right: 1%;
    padding: 5px;
    border: 1px solid #333333;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #333333;
    background-color: #333333;
}

.textareaManager button{
    background-color: #333333;
    color: #ffffff;
    border: 1px solid #333333;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #333333;
    padding: 3px;
    margin: 3px;
    cursor: pointer;
    margin-left: 5px;
    margin-right: 5px;
}

.centerContainer{
    margin-top: 1.5%;
    display: flex;
    justify-content: center;
}

#fullScreenCode{
    background-color: #bbbbbb;
    width: 90%;
    height: 90%;
}

#fullScreenCode #fullScreenCodeArea{
    background-color: #000000;
    color: #ffffff;
    font-family: "Courier New", Courier, monospace;
    font-size: 12px;
    line-height: 1.5;
    padding: 10px;
    white-space: pre;
    word-wrap: normal;
    overflow: auto;
    border: 1px solid #000000;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin-top: 1%;
    margin-bottom: 1%;
    width: 99%;
    height: 92%;
    resize: none;
}

#fullScreenCode{
    animation: fullScreenCodeAppear 1s;
}

#fullScreenCode.fullScreenCodeDisappear{
    animation: fullScreenCodeDisappear 1s;
}

@keyframes fullScreenCodeAppear{
    0%{
        opacity: 0;
        height: 0%;
        width: 0%;
    }
    50%{
        width: 90%;
        height: 90%;
    }
    100%{
        opacity: 1;
        width: 90%;
        height: 90%;
    }
}

@keyframes fullScreenCodeDisappear{
    0%{
        opacity: 1;
        width: 90%;
        height: 90%;
    }
    50%{
        width: 90%;
        height: 90%;
    }
    100%{
        opacity: 0;
        height: 0%;
        width: 0%;
    }
}

.textareaManager button:hover{
    background-color: #444444;
    border: 1px solid #444444;
    box-shadow: 0px 0px 5px #444444;
}

#drawArea{
    background-color: #ffffff;
    background-color: #4b4b4b;
    border-bottom: 1px solid #919191;
    border-right: 1px solid #919191;
    border-left: 1px double #919191;
    -webkit-border-radius: 5px;
    -webkit-border-top-left-radius: 0;
    -webkit-border-top-right-radius: 0;
    -moz-border-radius: 5px;
    -moz-border-radius-topleft: 0;
    -moz-border-radius-topright: 0;
    border-radius: 5px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0px 0px 5px #000000;
}

.drawArea .palette{
    background-color: #4b4b4b;
    border-top: 1px solid #919191;
    border-right: 1px solid #919191;
    border-left: 1px double #919191;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-top-right-radius: 70px;
    -moz-border-radius-topleft: 5px;
    -moz-border-radius-topright: 70px;
    border-top-left-radius: 5px;
    border-top-right-radius: 70px;
    box-shadow: 0px 0px 5px #000000;
    padding: 5px;
    width: 502px;
    
    display: flex;
    
}

.drawArea .palette .spacer{
    padding-left: 15px;
    margin-left: 10px;
    padding-right: 15px;
    margin-right: 10px;

    background-color: #ffffff;
    margin-bottom: 9px;
    margin-top: 9px;
}

.drawArea .palette #currentColor{
    background-color: #ffffff;
    width: 20px;
    height: 20px;
    border: 1px solid #919191;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}

.drawArea .palette .Fill{
    background-color: #ffffff;
    width: 20px;
    height: 20px;
    border: 1px solid #919191;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;

}

.drawArea .palette .color0{
    background-color: black;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}

.drawArea .palette .color1{
    background-color: green;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}

.drawArea .palette .color2{
    background-color: red;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}

.drawArea .palette .color3{
    background-color: yellow;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}

.drawArea .palette .color4{
    background-color: blue;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}

.drawArea .palette .color5{
    background-color: cyan;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}

.drawArea .palette .color6{
    background-color: purple;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}

.drawArea .palette .color7{
    background-color: white;
    width: 20px;
    height: 20px;
    border: 1px solid #ffffff;
    border-radius: 5px;
    box-shadow: 0px 0px 5px #000000;
    margin: 2px;
    cursor: pointer;
}