
* { 
  box-sizing: border-box; 
}

*:before,
*:after { 
  box-sizing: inherit; 
}

html, body {
    height: 100%;
}

body {
    background: #D00265;
    /*background: RGBA(39, 40, 34, 1.00);*/
    font-family: sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0;
    border: 16px solid #fff;
} 

.container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  height: 80%;
}  


@media (min-width: 980px) {
  .container {
    height: 66%;
  }
}  

h1 { 
  font-size: 0;
  width: 1px;
  height: 1px;
  display: inline-block;
  overflow: hidden;
  position: absolute!important;
  border: 0!important;
  padding: 0!important;
  margin: 0!important;
  clip: rect(1px,1px,1px,1px);
}

img,
.img-fluid {
    display: block;
    width: 90%;
    max-width: 100%; /* breaks in FF */
    height: auto;
    max-height: 100%;

}