* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a:link, a:visited {
  color: maroon;
  font-weight: bolder;
  text-decoration: none;
}

.header {
  position:relative;
  display: flex;
  justify-content: space-around;
  width: 100%;
  background: wheat;
  flex-wrap: wrap;
}

h1 { font-family: pacifico, cursive, sans-serif;
    font-size: 3.5em;
    display: flex;}

.menu {
  margin-top: 30px;
  position: relative;
  font-size: 20px;
  font-family: 'Comic Sans MS', 'cursive','Open Sans', 'sans-serif';
}

ul.menu {list-style: none;
        padding: 0;}

.menu > li {
  display: inline-flex;
  margin-right: auto;
  padding: 10px;
}
   
.footer {
  position: relative;
  display: flex;
  justify-content: space-around;
  padding: 30px;
  width: 100%; 
  background: wheat;
  flex-wrap: wrap;
}

@media screen and (max-width: 900px){
/*.menu {margin-top:5px;}*/
.menu > li {padding: 7px;}
h1 {font-size: 2.3em;}
}
   
@media screen and (max-width: 600px) {
 h1 { font-family: cursive, sans-serif;
    font-weight: bold;
    font-size: 2em;
    display: flex;}
.menu {margin-top: 0;
    font-size: 18px;}
.menu > li {padding: 5px;}
 
}
