body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
    background-color: #f8f9fa;
}

.google-logo img {
    width: 272px;
    height: 92px;
    margin-bottom: 20px;
}

.search-container {
    width: 100%;
    max-width: 584px;
    margin: 0 auto;
}

.search-bar {
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    border: 1px solid #dfe1e5;
    border-radius: 24px;
    box-shadow: 0 1px 6px rgba(32, 33, 36, 0.28);
    outline: none;
}

.search-bar:focus {
    border-color: #4285f4;
}

.buttons {
    margin-top: 20px;
}

.search-button {
    background-color: #f8f9fa;
    border: 1px solid #f8f9fa;
    color: #5f6368;
    font-size: 14px;
    padding: 10px 20px;
    margin: 5px;
    border-radius: 4px;
    cursor: pointer;
}

.search-button:hover {
    border: 1px solid #dadce0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}