
/*
Theme Name: Domain Sale Theme
Theme URI: http://example.com/domain-sale-theme
Author: Your Name
Author URI: http://example.com
Description: A custom theme for Domain Sale Website.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: domain-sale-theme
*/
body {
    font-family: Arial, sans-serif;
    background-color: #fff;
}
.container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    width: 90%;
    margin: auto;
}
.yard-sale img {
    width: 396px; /* Increased size by an additional 10% */
    margin-right: 50px; /* Space between the image and the form */
}
.sale-sign {
    margin: 20px auto;
    background-color: #f8f8f8;
    border: 1px solid #ccc;
    padding: 20px;
    cursor: pointer;
}
.contact-form h2 {
    color: green;
}
.contact-form form {
    display: flex;
    flex-direction: column;
    width: 300px;
    margin: auto;
}
input, textarea, button {
    padding: 10px;
    margin: 5px 0;
    border-radius: 5px;
}
button {
    background-color: green;
    color: white;
    border: none;
}
.footer p {
    color: #ccc;
    font-size: 12px;
    text-align: center;
}
