#contact-form {
    padding: 20px;
    background-color: #333333;
}

body {
    background-color: #333333;
}

form {
    display: flex;
    flex-direction: column;
    max-width: 500px;
    margin: 0 auto; 
}

label {
    margin-top: 0px;
}

input, textarea {
    padding: 10px;
    margin-top: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#submit_button {
    margin-top: 15px;
    padding: 10px;
    background-color: #A3A3A3;
    color: #252525;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#submit_button:hover {
    background-color: #FFFFFF;
}

#submit_button:active {
    background-color: #93CBFF; /* Change to a slightly different color when clicked */
    transform: scale(0.95); /* Slightly shrink the button to indicate a click */
}

.contact-message {
    text-align: center; /* Center the text */
    margin-bottom: 15px; /* Add some spacing below the message */
}
