/* Ensure the canvas is behind the content */

body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: Arial, sans-serif;
  min-height: 100%;
  overflow-x: hidden;
}

/* The background canvas */

#matrix {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* Your page content */

.content {
  position: relative;
  z-index: 1;
  padding: 20px;
  color: white;
}

h1 {
  font-size: 2rem;
  text-align: center;
}

p {
  text-align: center;
}

.bodyprops {
  background: #002100;
}

