body {
    margin: 0;
    padding: 0;
    background-image: url('pexels-magda-ehlers-1308799.jpg'); /* Replace with your background image URL or path */
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: bottom;
    font-family: Arial, sans-serif;
    color: #fff;
    overflow: hidden;
    
}

.landing-container {
    position: relative;
    text-align: center;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 5px;
    margin-top: 20px;
    z-index: 1;
}

h1 {
    font-size: 28px;
    margin: 20px 0;
    text-align: center;
    padding-bottom: 20px;
    padding-top: 25px;
}

form {
    text-align: center;
}

label {
    display: block;
    font-weight: bold;
}

input {
    width: 50%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    background-color: #007BFF;
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    border-radius: 5px;
}

#chat-output {
    text-align: left;
    background-color: rgba(255, 255, 255, 0.8);
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    color: #000; /* Set the text color to black */
    max-width: 400px; /* Limit the width of the chat output container */
    margin: 0 auto;
}
