.cr {
  display: flex;
  flex-direction: column; /* Stack children vertically */
  justify-content: flex-end; /* Push all contents to the bottom */

}
p {
    text-align: end;
}
     iframe {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1; /* Pushes it behind normal content */
  border: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
body {
    background-color:#0d0e12;
}

