/* style.css
 Style sheet for whatisclimatechange.org
 */
 
body {
    background-color: azure;
}

nav {
  background-color: lightgray;
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding-left: 20px; padding-right: 20px;
}

nav > p {
    background-color: #77bb77;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}

nav > p > a {
    color: inherit;
    text-decoration: none;
}

h1 {
    text-align: center;
    font-size: 4em;
}

