/* style.css */

body {
    background-color: beige;
    color: purple;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
}

h1 {
    font-size: 2em;
    margin-bottom: 0.5em;
}

ul {
    list-style-type: none;
    padding: 0;
}

li {
    margin-bottom: 0.5em;
}

a {
    color: purple;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}
/* Contact form styles */
.contact-box {
    max-width: 400px;
    margin: 20px auto;
    padding: 20px;
    border: 2px solid purple;
    border-radius: 10px;
    background: #fff;
}

.contact-box h2 {
    margin-top: 0;
    color: purple;
}

.contact-box label {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

.contact-box input, 
.contact-box textarea {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: inherit;
}

.contact-box button {
    margin-top: 15px;
    padding: 10px 15px;
    border: none;
    border-radius: 5px;
    background: purple;
    color: #fff;
    cursor: pointer;
    font-size: 1em;
}

.contact-box button:hover {
    background: #800080;
}
