body {
  /* padding: 50px; */
  font: 14px "Lucida Grande", Helvetica, Arial, sans-serif;
}

a {
  color: #00B7FF;
}

.text-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.bg-container {
  position: relative; /* for absolute positioning of the background image */
  height: 100vh; /* set the height to 100% of the viewport */
  width: 100vw; /* set the width to 100% of the viewport */
  background-image: url('grid.jpg'); /* replace with your image URL */
  background-size: cover; /* set the background image to cover the entire container */
  background-position: center; /* center the image horizontally and vertically */
  background-repeat: no-repeat; /* prevent image repetition */
  color: white;
  background-attachment: fixed;
  overflow: hidden;
}