body {
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    padding: 20px;
    background-color: #0f0f0f; /* Light gray background */
    color: #ffffff; /* Darker text for better contrast */
}

.container {
    width: 100%;
    margin: 0 auto;
    background-color: #0f0f0f; /* White background for the content area */
    padding: 20px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0); /* Soft shadow for depth */
    border-radius: 0px; /* Rounded corners */
}

#logo {
    width: 300px;
    height: auto;
    margin: 0 auto;
}

h1 {
    margin-top: 20px;
    margin-bottom: 1px;
    font-size: 48px;
    font-family: 'DM Serif Display', serif; /* DM Serif Display font for the title */
}


.subtitle {
    font-size: 18px;
    color: #b6b6b6;
    font-family: 'Montserrat', sans-serif; /* Montserrat font for the subtitle */
    margin-bottom: 0px;
}

#prompt {
    width: 70%; /* Relative width for responsiveness */
    max-width: 500px; /* Maximum width */
    height: 50px; /* Increased height */
    border-radius: 25px; /* Corner radius */
    margin: 50px auto; /* Space between input and button */
    margin-bottom: 40px;
    background-color: #fff; /* White background */
    border: 1px solid #dfe1e5; /* Light grey border */
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.18); /* Subtle inner shadow */
    padding: 0 20px; /* Padding inside the input */
    font-size: 16px; /* Font size */
    color: #333; /* Font color */
    font-family: 'Montserrat', sans-serif; /* Montserrat font for the subtitle */
    display: block; /* Center the input field */
    outline: none; /* Removes the default focus outline */
}

#prompt:focus {
    box-shadow: inset 0 2px 2px rgba(0,0,0,0.24), 0 2px 6px rgba(32,33,36,0.28); /* Darker inner shadow on focus */
    border-color: #4d90fe; /* Google's focus border color */
}

button {
    background-color: #7300ff;
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold; /* Added for bold text */
    display: block; /* Makes the button a block element */
    margin: 0 auto 20px; /* Increased bottom margin for more space below the button */
    width: 50%; /* You can adjust the width to your preference */
    max-width: 200px; /* Maximum width for the button */
}

.button {
    background-color: #7300ff;
    color: white;
    border: none;
    padding: 20px 30px; /* Adjusted padding for button size */
    border-radius: 50px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold; /* Added for bold text */
    display: block;
    margin: 0 auto 20px; /* Centered with margin */
    width: 50%; /* Width of the button */
    max-width: 200px; /* Maximum width */
    text-align: center;
    text-decoration: none; /* Remove underline from link */
}

.button:hover {
    background-color: #340e6c; /* Darker on hover */
    text-decoration: none;
}


button:hover {
    background-color: #340e6c; /* Darker on hover */
}

#logoDisplay img {
    max-width: 100%;
    height: auto;
    margin-top: 50px;
}
