body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: #333;
    color: white;
}

h1 {
    color: #FF4500;
}

form {
    width: 50%;
    margin: 0 auto;
}

input, textarea {
    width: 100%;
    padding: 5px;
    margin: 5px 0;
}

button {
    background-color: #FF4500;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
}

button:hover {
    background-color: #FF6347;
}

a {
    text-decoration: none;
    color: #0074D9;
}

a:hover {
    text-decoration: underline;
}

