body{
  margin: 0;
  padding: 0;
  background-color: #e7e7e7;
}

/* Set the background image for your container */
.background-container {
    /* Specify the background image URL */
    background-image: url('../images/mtc-bg-01.png'); /* Replace 'your-image.jpg' with the path to your image */

    /* Set the background size to cover the entire container */
    background-size: cover;

    /* Center the background horizontally and vertically */
    background-position: center center;

    /* Make the background fixed (optional) */
    background-attachment: fixed;

    /* Set a background color as a fallback */
    background-color: #f2f2f2; /* Choose an appropriate background color */

    /* Set the container to take up the entire viewport */
    width: 100vw;
    height: 100vh;

    /* Ensure content is on top of the background */
    z-index: 1;
}
