
/* General Styling */
body {
    background-color: #1e1e2f; /* Dark blue background */
    color: #f5f5f5; /* Light text color */
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

/* Header Styling */
header {
    background: linear-gradient(45deg, #4caf50, #81c784); /* Green gradient */
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

/* Links */
a {
    color: #ffd700; /* Gold for links */
    text-decoration: none;
}

a:hover {
    color: #ffa500; /* Orange when hovered */
}

/* Buttons */
button {
    background-color: #007bff; /* Blue button */
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 10px;
    cursor: pointer;
    border-radius: 5px;
}

button:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

/* Footer */
footer {
    background-color: #333;
    color: #bbb;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
