* {
    padding: 0;
    margin: 0;
}

body {background-color: slategray;}

body {
    font-family: Sans-Serif;
  }

h1 {
    color: gainsboro;
}

h2 {
    color: gainsboro;
}

p {
    color: gainsboro;
}

li {
    color: gainsboro;
}

img {
    width: 200px;
}

.content {
    width: 75%; /* Could be anything, but 75% works here. */
    margin: auto; /* This is what center the content div itself. */
    text-align: center; /* This will center the text inside the paragraph tag */
    margin-top: 100px;
 }

 p {
    font-weight: bold
 }

a{
	color: #5ACBC6;
}

a:hover{
	color: #5ACBC6;
}

a:visited{
	color: #096FB7;
}

a:active{
	color: #096FB7;
}