* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
 
    background-color: #c98699;
      background-attachment: fixed;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

/* Remove container box */
.container {
    background: rgb(255, 244, 255);
    padding: 20px;
    border: none;
    box-shadow: none;
}

/* Heading cute pastel color */
h1 {
    font-size: 28px;
    color: #b57ba6; 
    font-weight: bold;
    text-shadow: 0px 2px 5px rgba(0,0,0,0.2);
}

/* Quotes text */
#quotes {
    font-size: 18px;
    margin: 15px 0;
    color: #6b4f5f;
    font-style: italic;
    font-weight: 500;
}

/* Button pastel style */
.generate {
    padding: 12px 25px;
    background: #d8a7b1;
    border: none;
    color: white;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.generate:hover {
    background: #c98699;
    transform: scale(1.05);
}
