*{
  box-sizing: border-box;
}
body{
  background-color: #f2f7f5;
}
header{
  display: flex;
  height: 30%;
  justify-content: space-between;
  border-bottom: 2px solid black;
  align-items: center; 
  padding-left: 1rem;
  padding-right: 1rem;
  margin-bottom: 1rem;
  background-color: #72757e;
}
ul{
  display: flex;
  list-style-type: none;
}
.barra{
  border-right: 1px solid black;
  padding-right: 1rem;
  margin-right: 1rem;
}
a{
  text-decoration: none;
  color: #000000;
}

main{
  border-right: 2px solid black;
  width: 30%;
  margin-right: 1rem;
}
main img{
  max-width: 95%;
}

aside h1{
  margin-left: 2rem;
}
.division{
  display: flex;
  height: 29rem;
}

footer{
  display: flex;
  border-top: 2px solid black;
  height: 4.5rem;
  width: 100vw;
  justify-content: center;
  align-items: center;
  position: absolute;
  bottom: 0;
  margin-bottom: 0.5rem;
  background-color: #72757e;
}