body{
  margin: 0;
}


a {
    display: inline;
    margin: 5px;
    font-family: fantasy;
    text-decoration: none;
    color: black;
}
header{
display: flex;
min-height: 10px;
background-color: burlywood;
justify-content: space-between;
align-items: center;
padding: 10px;
}
.logo{
  display: flex;
}
.logo img{
  height: 100%;
}
nav a:hover {
  color:beige;
}
@media (max-width:1000px){
  header{
    flex-direction: column;
  }
  nav{
    padding: 10px 0px;
  }
}
@media (max-width:400px)
body{
    width: 100%;
      flex-direction: column;
}
@media (max-width:400px)
footer{
    width: 100%;
      flex-direction: column;
}
img{
  display: flex;
  float: left;
}
p{
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.titulo{
text-align: center;
}
h2{
  text-align: center;
}
footer{
  background-color:blanchedalmond;
  width: 100%;
  height: 140px;
  bottom: 0;
  position:fixed;
  text-align: center;
  color: black;
}    
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    