body {
    font-family: Arial, sans-serif;
    background-color: #333;
    margin: 0;
    padding: 0;
}

.contact-form {
    width: 80%;
    max-width: 600px;
    margin: 50px auto;
    background-color: #333;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px white;
}

.contact-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffffff;
}

.contact-form p {
    color: #ffffff;
}
label{
    color: #ffffff;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.contact-form label {
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid white;
    border-radius: 3px;
    color:rgb(7, 7, 7);
}

.contact-form textarea {
    height: 100px;
}

.contact-form button {
    padding: 10px 20px;
    border: none;
    background-color: white;
    color: #333;
    font-size: 16px;
    cursor: pointer;
    border-radius: 3px;
    border: 30px;
}

.contact-form button:hover {
    background-color: #0056b3;
}
