/* Body styling: vertical stacking, center alignment */
body {
    background-color: #f5f5f5;
    height: 100vh;
    display: flex;
    flex-direction: column;   /* stack children vertically */
    align-items: center;      /* center horizontally */
    justify-content: center;  /* center vertically */
    margin: 0;                /* remove default margin */
    font-family: Arial, sans-serif;
}

/* Heading style */
h1{
    margin: 0 0 100px 0;       /* margin bottom for spacing below heading */
    text-align: center;
    color: #333;
}

/* Container styling */
.container {
    background: #676565; 
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.15);
    padding: 16px 20px;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;  /* left align inside container */
}

/* Input text styling */
#inputText {
    background-color: #e84393; /* pink background */
    color: rgb(204, 199, 199);
    border: none;
    padding-left: 10px;
    border-radius: 8px;
    font-size: 1.2rem;
    width: 100%;
    margin-bottom: 25px;
}

/* Placeholder styling */
#inputText::placeholder {
    color: white;
    opacity: 1;
    font-family: sans-serif;
    font-size: 0.9rem;
}

/* Output paragraph styling */
#output {
    color: white;
    margin: 0;
    font-size: 1rem;
    background: none;
    padding: 0;
    padding-left: 0;
}
