* {
    font-family: 'Open Sans', sans-serif;
    margin: 0px;
    padding: 0px;
    color: black;
}

body {
	background-color: white;
}

#introText {
    margin-top: 25px;
    font-size: 20px;
    display: block;
    text-align: center;
}

h1 { /*Use something more specific*/
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
}

#newsArea {
    width: 50%;
    margin: auto;
}

#newsArea ul li {
    list-style-type: none;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 10px;
    width: 100%;
}

.newsItem h2 {
    text-align: center;
    margin-bottom: 10px;
}

.newsItem p {
    text-align: center;
}

.newsItem:hover {
    background-color: #b5efff;
}

li a {
    padding: 10px;
    border: 3px solid black;
    border-radius: 10px;
    display: block;
    text-decoration: none;
}

.displayImage {
    margin: 10px auto;
    width: 90%;
    display: block;
}