/* 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: white;
  color: black;
  font-family: Verdana;
  background-image: url("background111.jpg");
  background-size: 30%;
}

h1 {
  color: black;
  background: black;
   text-align: center;
}
p {
  color: white;
  background: black;
  text-align: center;
  position: relative;
    margin: 0 auto;
   

}

/* FOOTER  */
.footer {
 background-image: url("https://i.pinimg.com/564x/a9/bf/db/a9bfdb42d3fe99300b1918ec1a907353.jpg") ;
 background-size: 10%;
  position:relative;
   right:0;
  bottom:0;
  width:100%;
  height:60px; 
   text-align: center; /* centers inline elements inside footer */
 
}


/* NAVIGATION */
nav {
  display: list-item; /* Flexbox layout */
    flex-direction: column; /* Horizontal layout */
    justify-content: center; /* Space around items */
    align-items: center; /* Vertically center items */

    position: relative; /* or absolute */
    top: 100px;          /* Optional: align to top of screen */
    left: -40%;         /* Align to the left edge of the screen */
    height: 180px;    /* Full height of the viewport */
    width: 200px;    /* Or any desired width */
  /* other styles as needed */
  
    color:white;
  
    padding: 0px 0px; /* Padding inside nav */
    margin: 0px auto; /* Margin around nav, centered horizontally */
    border: 5px solid purple; /* Border around nav */
    border-radius: 0px; /* Rounded corners */
    background-color: #65003a; /* Background color */
  
    background-repeat: no-repeat;
    background-size: cover;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Shadow effect */
    opacity: 0.95; /* Slight transparency */
    cursor: pointer; /* Cursor when hovering over nav */
    transition: all 0.3s ease; /* Smooth transition for all properties */
}








