html {
    /* px means "pixels". The base font size is now 10 pixels high */
    font-size: 10px;
    /* Replace PLACEHOLDER with the font-family property value you got from Google Fonts */
    font-family: "Roboto Mono", sans-serif;
    background-color: white;
}

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

h1 {
    font-size: 60px;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    color: #002f5a;
    text-shadow: 3px 3px 15px rgb(73, 73, 73);
}

h2 {
    font-size: 45px;
    text-align: left;
}

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

img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
}