img {
  width: 750px; /* Fixed: changed '750xpx' to '750px' */
 
}

body {
  background-color: grey; 
}

h1 {
  color: white;
  text-decoration: underline overline;
  text-shadow: 0 0 13px black;
}

/* Fixed: changed ':hober' to ':hover' */
h2:hover {
  text-shadow: 0 0 13px black;
}

/* --- New Navigation Bar Styles --- */
.navbar {
  text-align: center;
  background-color: #333;
  padding: 15px;
  margin-bottom: 20px;
}

.navbar a {
  color: white;
  text-decoration: none;
  font-family: sans-serif;
  font-weight: bold;
  padding: 10px 20px;
  margin: 0 10px;
}

.navbar a:hover {
  color: lightgrey;
  text-decoration: underline;
}
/* --- Projects Page Layout --- */
.project-container {
  display: flex;
  justify-content: center;
  gap: 40px; /* Puts some space between the two apps */
  flex-wrap: wrap; /* Allows them to stack on smaller screens */
  padding: 20px;
}

.project-card {
  background-color: rgba(255, 255, 255, 0.1); /* Adds a subtle dark/light tint box behind the app */
  padding: 15px;
  border-radius: 10px;
  margin-bottom: 20px;
}

.project-card h2 {
  color: white;
  font-family: sans-serif;
  margin-bottom: 15px;
}

