/* Cynthia Lara CSS */

/* General styles */
body {
    font-family: 'Arial', sans-serif;
    background-color: #f8f8f8;
    color: #333;
    margin: 0;
    padding: 0;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    color: #ff69b4; /* Hot pink */
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 50px;
}

h2 {
    font-size: 1.8em;
    color: #4b0082; /* Indigo */
    margin-top: 40px;
}

h3 {
    font-size: 1.5em;
    color: #1e90ff; /* Dodger blue */
    margin-top: 30px;
}

p {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
}

ul {
    list-style: none;
    padding: 0;
}

/* Exotic buttons */
button {
    border: none;
    background-color: #6B8E23; /* Olive Drab */
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 20px;
}

button:hover {
    background-color: #556B2F; /* Dark Olive Green */
}

/* Contact form */
form {
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

form label {
    display: block;
    margin-bottom: 5px;
    color: #4b0082; /* Indigo */
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1em;
}

form textarea {
    resize: vertical;
}

form input[type="submit"] {
    border: none;
    background-color: #4b0082; /* Indigo */
    color: #fff;
    padding: 10px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    border-radius: 20px;
}

form input[type="submit"]:hover {
    background-color: #8a2be2; /* Blue violet */
}
