/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your HTML content. To learn how to do something, just try searching Google for questions like "how to change link color." */ body { background: #ffffff url("HeartBG.png"); color: #bf202f; font-family: 'courier new', courier, monospace; } a:link, a:visited { background-color: white; color: #f68787; border: 1px solid #f68787; padding: 2px 2px; text-align: center; text-decoration: none; display: inline-block; } a:hover, a:active { background-color: #f68787; color: white; }