Voici un exemple simple de feuille de style pour votre page html :
 body {
  background-color: lightblue;
 }
 h1 {
  color: white;
  text-align: center;
  background-color: orange;
 }
 p {
  font-family: verdana;
  font-size: 20px;
 }
Voir le site du W3 School pour d'autres attributs à ajouter pour le style de votre page !
Un autre css simple :
 body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #222;
  max-width: 40rem;
  padding: 2rem;
  margin: auto;
  background: #fafafa;
}
img {
  max-width: 100%;
}
a {
  color: #2ECC40;
}
h1, h2, strong {
  color: #111;
}
Et voici d'autres propriétés qui peuvent vous interesser pour enrichir votre page.