html, body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 100vh;
}

.full-screen {
  flex: 1; 
}

.step{
    height: 100%;
        padding-bottom: 3rem;
    display: flex
;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
}

@media print {

  body * {
    visibility: hidden;
  }

  #pdfContent, #pdfContent * {
    visibility: visible;
  }

  #pdfContent {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
  }

}