html {
    font-size: 100px; /* px 表示“像素（pixel）”: 基础字号为 10 像素 */
    font-family: "Open Sans", sans-serif; /* 这应该是你从 Google Fonts 得到的其余输出。 */
    background-color: white;
}

body {
    width: 1700px;
    margin: 0 auto;
    background-color: white;
    padding: 0 20px 20px 20px;
}

img {
    display: block;
    margin: 0 auto;
}


h1 {
    font-family: Consolas;
    font-size: 60px;
    text-align: center;
    color: black;
}

h2 {
    font-family: Consolas;
    font-size: 25px;
    text-align: center;
    color: midnightblue;
}

p,
li {
    font-family: Consolas;
    font-size: 45px;
    line-height: 2;
    letter-spacing: 1px;
    color: black;
}


