html {
    font-size: 16px;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-width: 460px;
    box-sizing: border-box;
    background-color: hwb(0 82% 17%);
    font-size: 1.5rem;
    


}

header {
    width: 100%;

}

nav {
    background-color: #666;
    color: #fff;
    width: 100%;

    top: 0vh;
    padding-top: 0.05em;
    padding-bottom: 0.05em;
    font-size: 1rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    z-index: 1;
}

nav a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em;
    font-weight: bold;
}

nav a:hover {
    color: Blue;
    text-decoration: underline;
}

.Banner-Text{    
   /* background-image: url("../images/Logo1.jpg");*/
    /*background-repeat: no-repeat;*/
    /* Prevents the image from tiling */
 /*   background-size: cover;*/
    /* Scales the image to cover the entire div */
  /*  background-position: center;*/
    /* Centers the image within the div */
  /*  opacity: 0.5;

    min-width: 100%;
    text-align: center;
    z-index: 10;
    padding: 0.5em;*/
}

.Banner-Text p {

    color: lightslategray;
    font-weight: bolder;

    /* text-shadow: 2px 2px 0 Black, -2px -2px 0 Black;*/
    /* Edge color and width */
    /* text-shadow: 3px 3px 3px White, -3px -3px 0 White;
    /* Edge color and width */
    margin: 0;
}
/*************************************************************************/


.Banner-Text {
    position: relative;         /* Needed for absolute positioning of ::before */
    min-width: 100%;
    text-align: center;
    z-index: 10;
    padding: 0.5em;
    overflow: hidden;           /* Optional: prevents background from spilling */
  }
  
  /* Add this block */
  .Banner-Text::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: url("../images/Logo1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.25;               /* Only the background is semi-transparent */
    z-index: -1;                /* Keeps the image behind the text */
  }
/****************************************************************************/
#Title {
     opacity: 1;
    font-size: 5rem;
    -webkit-text-stroke: 2px NAvy; /* Outer stroke color and thickness */
   
}

.SubTitle {
    font-size: 3rem;
    -webkit-text-stroke: 2px navy; /* Outer stroke color and thickness */
    font-weight: bolder;
}

#Logo {
    width: 20%;

}
