        /* Styling for the header */
        header {
            background-color: white;
            padding: 0px;
            text-align: center;
        }
        header img {
            max-width: 100%;
            height: auto;
        }
		
		/* Navbar Styling */
        .navbar {
            background-color: red;
            padding: 10px;
            text-align: center; /* Centers the links */
        }

        .navbar a {
            color: white; /* Font color */
            text-decoration: none;
            font-size: 18px;
            font-weight: bold;
            margin: 0 15px; /* Space between links */
            display: inline-block;
            transition: color 0.3s;
        }

        .navbar a:hover {
            color: #ffcc00; /* Change color on hover */
        }
  footer {
 max-width: 100%;
  text-align: center;
  padding: 3px;
  background-color: DarkSalmon;
  color: white;
}

