Contact Us – Wells Done Home Repair and Remodel
body {
margin: 0;
font-family: Arial, sans-serif;
background: url(‘/mnt/data/Stylized Emblem Logo for Home Repair Business (3).png’) no-repeat center center fixed;
background-size: cover;
color: #ffffff;
}
.overlay {
background: rgba(0, 0, 0, 0.65);
min-height: 100vh;
padding: 40px 20px;
display: flex;
justify-content: center;
align-items: center;
}
.contact-box {
max-width: 700px;
width: 100%;
background: rgba(0, 0, 0, 0.75);
padding: 30px;
border-radius: 10px;
box-shadow: 0 0 12px rgba(0,0,0,0.5);
}
h1 {
text-align: center;
margin-bottom: 10px;
font-size: 36px;
letter-spacing: 1px;
}
p {
text-align: center;
margin-bottom: 30px;
font-size: 18px;
}
form {
display: grid;
gap: 15px;
}
input, textarea {
width: 100%;
padding: 12px;
border-radius: 5px;
border: none;
font-size: 16px;
}
textarea {
resize: vertical;
height: 150px;
}
button {
padding: 14px;
border: none;
border-radius: 5px;
background: #d32f2f;
color: #ffffff;
font-size: 18px;
cursor: pointer;
transition: 0.3s;
}
button:hover {
background: #b71c1c;
}