/** Write your CSS in here **/
/* * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    font-family: Arial, sans-serif;
    background: rgb(184, 238, 184);
    position: relative;
}

/* Header Style */
/* h1 {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: #105d47;
} */

/* Quote Style */
/* #quote {
    font-size: 1.5rem;
    color: #125b1bfd;
    margin: 20px 0 10px 0;
    text-align: center;
} */

/* Author Style */
/* #author {
    font-size: 1.2rem;
    color: #253c25;
    font-style: italic;
    font-weight: bold;
    text-align: center;
    margin-top: 5px;
} */

/* Button Style */
/* #new-quote {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background: #044507;
    border: none;
    border-radius: 5px;
    cursor: pointer;

} */

/* #new-quote:hover {
    background: #297d7b;
} */ */

/* Reset */


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: Arial, sans-serif;
    background: rgb(184, 238, 184);
    padding: 20px;
}

/* Header */
h1 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
    color: #105d47;
    margin-bottom: 40px;
}

/* Quote display */
#quote {
    font-size: 1.5rem;
    color: #125b1bfd;
    margin: 20px 0 10px 0;
    text-align: center;
}

#author {
    font-size: 1.2rem;
    color: #253c25;
    font-style: italic;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
}

/* Buttons */
button {
    padding: 10px 20px;
    font-size: 1rem;
    color: white;
    background: #044507;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s ease;
}

button:hover {
    background: #297d7b;
}

/* New Quote Button */
#new-quote {
    margin-bottom: 40px;
}

/* Add Quote Form */
#add-quote-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

#add-quote-form input {
    width: 90%;
    padding: 10px;
    margin: 10px 0;
    font-size: 1rem;
    border: 1px solid #044507;
    border-radius: 5px;
}

#add-quote-form button {
    width: 50%;
    margin-top: 10px;
}

/* Form message */
#form-message {
    margin-top: 15px;
    font-size: 1rem;
    color: #105d47;
    font-weight: bold;
    text-align: center;
}

/* Responsive */
@media (max-width: 500px) {
    h1 {
        font-size: 2rem;
    }

    #quote {
        font-size: 1.2rem;
    }

    #author {
        font-size: 1rem;
    }

    #add-quote-form {
        width: 90%;
        padding: 15px;
    }
}
