html {
    font-size: 14px; /* px means "pixels": the base font size is now 10 pixels high */
    font-family: "Open Sans", sans-serif; /* this should be the rest of the output you got from Google Fonts */
    background-color: #ffd699;
}

body {
    width: 80%;
    margin: 0 auto;
    background-color: #ffb84d;
    padding: 0 20px 20px 20px;
    border: 0.5px solid gray;
  }

h1 {
    font-size: 60px;
    text-align: center;
    margin: 0;
    padding: 20px 0;
    color: #black;
    text-shadow: 3px 3px 1px gray;
  }

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

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

.align-right {
  text-align: right;
  border: 0;
}

.center {
  width: 80%
}
