html{
  min-width: 100vw;
  min-height: 100vh;
  background-color: #010532;
}
body{
  min-width: 100vw;
  min-height:100vh;
  display:flex;
  flex-direction:row;
  align-items:center;
  justify-content: center;
  position: relative;
  background-image: url("../images/bg-azul.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size:cover;
}
main{
  width:100vw;
  display: flex;
  flex-direction: row;
  justify-content:space-evenly;
  align-items: center;
  z-index: 1;
  /* justify-content: space-around; */
  /* background:orange; */
}
footer{
  width: 100vw;
  height: 40vh;
  position: absolute;
  bottom:0;
  z-index: 0;
}


@media only screen and (min-device-width: 20px)  and (max-device-width: 991px){
  html,body {
     max-width: inherit;
     max-height: inherit;
     border-bottom: 1px solid #fff;

  }
}