html, body {
    font-family:Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
    background-image: url("corvallis-famous-bg.png");
}
#title{
    max-width: 250px;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
    background-color: whitesmoke;
    color: black;
    padding: 5px;
    height:auto;
    text-align: center;
    border: solid black 2px;
    box-shadow: 5px;
}
#central{
    max-width: 800px;
    margin-top: 100px;
    background-color: whitesmoke;
    color: black;
    margin: 15px auto;
    padding: 10px;
    height: 650px;
    text-align: center;
    border: solid black 2px;
    box-shadow: 5px;
}
#container{
    display: grid;
    grid-template-columns: auto auto auto;
    padding: 10px;
}
#gridItem{
    display: flex;
    justify-content: center;
    align-items: center;
    color: black;
    width: 250px;
    height: 250px;
    background-size: 250px 250px;
    background-image:url("sticky-note.jpeg");
    margin: 10px;
}
p{
    font-family: 'Courier New', Courier, monospace;
}