body {
    background-color: #000000;
    background-image: url("rabbit.png"); /* Add this line */
    background-size: 95%; /* Zoom out the image a tiny bit */
    background-position: center; /* Center the image vertically */
    background-repeat: no-repeat; /* Prevent repeating the image */
    background-attachment: fixed; /* Keep the image fixed in the background */
    color: #00ff7f; /* Greenish text for retro effect */
    font-family: "Courier New", Courier, monospace;
    margin: 20px;
}
h1 {
    border-bottom: 2px solid #556b29; /* Dark green border */
    padding-bottom: 5px;
}
fieldset {
    background-color: #4e5a3c; /* Dark green background */
    border: 2px solid #556b29;
    margin-top: 10px;
    padding: 10px;
    border-radius: 5px;
}
legend {
    font-size: 1.2em;
    color: #00ff7f;
    border: 2px solid #556b29; /* Border for legend */
    background-color: #000000; /* Background color for legend */
    padding: 5px; /* Padding for legend */
    border-radius: 3px; /* Rounded corners for legend */
}
p {
    font-size: 1.2em;
}
form {
    margin-top: 20px;
}
label {
    display: block;
    font-size: 1.2em;
    color: #00ff7f;
    margin-bottom: 5px;
}
input[type="date"] {
    background-color: #4e5a3c;
    color: #00ff7f;
    border: 2px solid #556b29;
    padding: 5px;
    border-radius: 3px;
}
input[type="submit"] {
    background-color: #556b29;
    color: #00ff7f;
    border: none;
    padding: 5px 10px;
    border-radius: 3px;
    cursor: pointer;
}
input[type="submit"]:hover {
    background-color: #3a4130; /* Darker green for hover effect */
}
/* Add styling for the <code> tag */
code {
    background-color: #4e5a3c;
    border: 1px solid #556b29;
    padding: 2px 4px;
    font-family: monospace;
    border-radius: 3px;
}
