/* styles.css */
body {
    margin: 0;
    padding: 0;
    background-image: url('guard.png'); /* Replace with your image path */
/*    background-size: cover;                  Scales the image to cover the entire window */
    background-size: 100% 100%;   /*       Stretches image to fill viewport, allows distortion */
    background-position: center;            /* Centers the image */
    background-repeat: no-repeat;           /* Prevents the image from repeating */
    color: rgb(110, 238, 28);
    height: 100vh;                          /* Makes sure the body takes full viewport height */
}
h1 {
    font-size: 64px;
    font-family: Arial, sans-serif;
    color: rgb(238, 28, 238);
}


my-bodey {
    display: block;
    font-size: 24px;
    font-family: Georgia, serif;
    color: rgb(255, 246, 248);
    margin-bottom: 1em;
}
