body {
    font-family: "Arial Rounded MT Bold", sans-serif;
    background-color: #fdf6e3;
    color: #3f2f21;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.contact-container {
    background-color: #fff;
    padding: 2rem;
    border: 2px solid #3f2f21;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 500px;
}

input,
textarea {
    width: 100%;
    padding: 0.75rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
}

button {
    background-color: #3f2f21;
    color: white;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
}

button:hover {
    background-color: #2e2419;
}
