html {
    font-size: 10px; /* px means "pixels": the base font size is now 10 pixels high  */
    font-family: 'Source Code Pro', monospace; /* this should be the rest of the output you got from Google fonts */
}

h1 {
font-size: 60px;
text-align: center;
}

p, li {
font-size: 24px;
line-height: 2;
letter-spacing: 1px;
}

html {
    background-color: #d2dee0;
}

body {
    width: 800px;
    margin: 0 auto;
    background-color: #b4aca1;
    padding: 0 20px 20px 20px;
    border: 5px solid black;
}

h1 {
    margin: 0;
    padding: 20px 0;
    color:rgb(30, 31, 32);
    text-shadow: 5px 5px 5px rgb(234, 227, 227);
}

img {
    display: block;
    margin: 0 auto;
    width: 500px
}
  