/* 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." */
@font-face {
  font-family: 'cringe';
  src: url('../fonts/evildark.off') format('woff')
     
    
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


.center {
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: 50%;
}



.align-right {
  float: right;
  margin-left: 20px;
  margin-bottom: 10px;
}
body {
  background-color: white;
  color: black;
  font-family: Verdana;
}

header {
   width: 60%; /* Sets the width to 80% of its parent container */
  margin: 0 auto; /* Centers the header horizontally */
   
   background-image: url("window.jpg");
  background-size: cover; /* Make the image cover the entire header */
  background-position: center;
  
  background-color: yellow; /* Light gray background */
  padding: 10px; /* Add some padding */
  text-align: center; /* Center the text */
  border: 1px solid black; /* Add a 1px gray border */

}

header h1 {
  font-family: 'cringe', evildark;
  color: red;
  
  margin-top: 0; /* Remove default top margin on h1 */
}

nav ul {
  list-style: none; /* Remove bullet points */
  padding: 0;
  margin: 10px 0; /* Add some vertical margin */
}

nav li {
  display: inline; /* Make list items horizontal */
  margin: 40 10px; /* Add some horizontal margin */
}