@charset "utf-8";
/*CSS Document*/
.container{
    display: flex;
}
.left,.right{
    width: 50%;
    margin: 15px;
    background-color: antiquewhite;
    min-height: 300px;
}
.right{
    line-height: 300px;
}
#view{
    text-align: center;
    font-size: 5em;
    color: blue; /*tương ứng với màu mặc định trong phần tử input type=color*/
    font-size: 1.2em;
}
fieldset{
    border: 2px solid blue;
    font-size: 1.2em;
}
ol li{
    line-height: 30px;
    padding-left: 20px;
    background-color: #9ff;
}
ol li:nth-child(odd){
    background-color: rgb(238, 86, 175);
}
.shadow{ /*chưa sử dụng*/
    text-shadow: 7px 7px 5px gray;
}