/* General styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f9f9f9;
    color: #333;
}

h1 {
    color: #4CAF50; /* Green color */
    text-align: center;
}

/* Link styles */
a {
    display: block; /* Makes each link take up the full width */
    margin: 10px 0; /* Adds some space between links */
    padding: 10px;
    text-decoration: none;
    color: #4CAF50; /* Green color */
    border: 1px solid #4CAF50; /* Border that matches the link color */
    border-radius: 5px;
    text-align: center;
}

a:hover {
    background-color: #4CAF50; /* Green background on hover */
    color: white; /* White text on hover */
}




