h1 {
}

nav {
    background-color: rgb(228, 220, 187);
    padding: 10px;

    position: fixed;   /* This fixes the navigation bar to the top of the page */
    top: 0;
    left: 0;
    width: 100%;
}
a {
    display: inline-block;   /* This makes margin, padding and translate work properly */
    background-color: rgb(250, 248, 248);
    padding: 10px;
    margin: 5px;
    color: rgb(0, 0, 0);
    text-decoration: none;   /* This removes the underline */
    transition-duration: 300ms;   /* This controls how long it takes to change styles */
}
a:hover {   /* These styles are only applied when you are hovering on the <a> */
    background-color: rgb(233, 175, 175);
    translate: 0 -3px;   /* Move upwards */
}
h1 {
    margin-top: 100px;   /* This adds space to the top of the <h1> so it appears under the fixed navigation bar */
}

body {
background-color: rgb(217, 233, 236);

p{
  background-color: white;  
  padding: 20px;
  width: 70%;
  margin:auto
}

      