/* 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-image: url('download (1).jpg'); /* specify the path to your image */
    background-size: cover; /* This automatically scales the image to cover the entire container */
    background-repeat: no-repeat; /* Prevents the image from tiling */
    background-position: center; /* Centers the image */
    margin: 0; /* Remove default body margin */
    height: 100vh; /* Ensure the body itself is full height of the screen */
}

}
