body {
    font-family: Arial, sans-serif;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    padding: 0 10px;
    /* Added padding to prevent text from hitting edges */
}

.container {
    text-align: center;
    max-width: 600px;
    width: 100%;
    /* Ensures it scales with screen size */
}

.search-bar {
    width: 100%;
    /* Full width on smaller screens */
    height: 44px;
    padding: 10px 20px;
    font-size: 18px;
    border: 1px solid #ddd;
    border-radius: 24px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    outline: none;
}

.search-bar:focus {
    border-color: #4285f4;
}

.btn-primary {
    background-color: #4285f4;
    border-color: #4285f4;
    border-radius: 24px;
    padding: 10px 20px;
    margin-top: 20px;
    font-size: 16px;
    color: white;
    width: 100%;
    /* Full width for the button on mobile screens */
}

.btn-primary:hover {
    background-color: #357ae8;
}

.fun-banter {
    font-size: 18px;
    color: white;
    text-align: center;
    font-style: italic;
    margin-top: 10px;
}

/* Media queries for smaller screens */
@media (max-width: 768px) {
    .fun-banter {
        font-size: 16px;
        /* Slightly smaller text on mobile */
    }

    .search-bar {
        font-size: 16px;
        /* Slightly smaller input text */
    }

    .btn-primary {
        font-size: 14px;
        /* Slightly smaller button text */
        padding: 8px 16px;
        /* Smaller padding for better fit */
    }
}