/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: pink;
  color: yellow;
  font-family: Verdana;
  background-image: url("camera.png"); /* Replace with your image's path */
  background-repeat: no-repeat; /* Prevents image repetition */
  background-size: cover; /* Make image cover the entire viewport */
  background-position: center center; /* Centers the image */
  background-attachment: fixed; /* Keeps image fixed while scrolling */
}

header {
  background-color: rgba(0, 0, 0, 0.6); /* Optional: makes header readable */
  color: white;
  padding: 20px;
  text-align: center;
  position: relative;
  z-index: 1;
}
 .my-text {
        margin-top: 50px; /* Moves text down */
        margin-left: 10px; /* Moves text right */
    }