* {
box-sizing: border-box;
}

a {
    text-decoration: none;
    color: hsl(48, 91%, 50%);
}
a:hover {
    color: blue;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 1hem;
    text-align: left;
    line-height: 1.5;
    margin-top: 0rem;
    margin-bottom: 0rem;
    margin-left: 5rem;
    margin-right: 5rem;
    background-color: beige;
}

#wrapper {
    width: 95%;
    border: 5px solid rgb(169, 169, 12);
    margin: auto;
    padding: 1.25rem;
}

img {
    display: block;
    margin: auto;
}

h1 {
    text-align: center;
    font-size: 4hem;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal; 
    background-color: hsl(48, 80%, 65%);
    color: rgb(255, 166, 0);
    padding: 2%;
    width: 50%;
    border: 3px solid orangered;
    margin: 1.25rem auto;
    box-shadow: 5px 5px 5px orange;
    border-radius: 2rem;
}
h2 {
    text-align: left;
    font-size: 2hem;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal; 
    color: blue; 
    text-shadow: 5px 5px 5px skyblue;
}
h3 {
    text-align: left;
    font-size: 1.5hem;
    font-family: "Abril Fatface", serif;
    font-weight: 400;
    font-style: normal; 
    font-family: Arial, Helvetica, sans-serif;
    color: darkblue;
}

strong {
    font-weight: 400;
    color: red;
}

em {
    font-style: italic;
    color: purple;
}