/* Global Styles */

body {
    font-family: Arial, sans-serif;
    background-color: #F5F5F5; /* Light nude background */
    color: #333; /* Dark text color */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */

header {
    background-color: #E0C9BB; /* Nude header background */
    color: #333; /* Dark text color */
    padding: 20px;
    text-align: center;
}

/* Footer Styles */

footer {
    background-color: #E0C9BB; /* Nude footer background */
    color: #333; /* Dark text color */
    padding: 20px;
    text-align: center;
}

/* Button Styles */

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #D6B8AA; /* Nude button background */
    color: #333; /* Dark text color */
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.button:hover {
    background-color: #C3A79C; /* Darker nude button background on hover */
}

/* Form Styles */

input[type="text"],
input[type="email"],
input[type="password"],
textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #ccc; /* Light border color */
    border-radius: 5px;
    box-sizing: border-box;
}

/* Other Styles */

/* Add your additional styles here */

