* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  font-optical-sizing: auto;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  padding: 1rem;

  font-size: 150%;
}

body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/assets/img/background.webp"); /* Update with your actual image path */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: grayscale(100%); /* Applies the monochrome filter */
  z-index: -1; /* Ensures the image is behind the content */
}

h1,
h2,
p {
  text-align: center;
  margin: 0.5rem 0;
  color: whitesmoke;
  text-shadow: 2px 2px #ff0000;
}
