html{
    line-height: 1.5;
    font-family: Georgia, 'Times New Roman', Times, 宋体, serif;
    font-size: 24px;
    color: #1a1a1a;
    background-color: bisque;
    }

body{
    margin: auto 5%;
}

::selection {
    color: #fff;
    background: rgb(38, 90, 255);
}

strong{
    font-weight: bold;
    color: rgb(38, 90, 255);
}

ol{
    padding-left: 20px;
    list-style-position: inside;
}

ul{
    padding-left: 20px;
    list-style-type: none;
    list-style-position: outside;
    color: grey;
}

ul li{
    border-left: grey 2px solid;
    padding-left: 5px; 
}

code{
    color: #1a1a1a;
    /* background-color: rgba(192, 192, 192, 0.3); */
    border: rgb(38, 90, 255) solid 1px;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
    font-family: Georgia, 'Times New Roman', Times, 宋体, serif;
    font-style: italic;
    font-weight: normal;
    line-height: 2.0;
    display: inline-block;
}

em{
    font-size: 80%;
    font-style: italic;
    font-weight: normal;
    margin: auto 5px auto 5px;
    color:rgb(255, 85, 38);
    background-color:blanchedalmond;
    border: silver 1px solid;
    border-radius: 5px;
    padding: 5px;
    margin: 5px;
}

hr{
    border: none;
    border-top: 1px rgb(38, 90, 255) dashed;
    margin-top: 50px;
    margin-bottom: 30px;
}

img{
    border-radius: 5px;
    height: 100%;
    display: inline-block;
    margin: 5px 10px;
}

a{
    text-decoration: none;
}