Looking to replicate the design of the Google homepage on a certain HTML page. Struggling with centering the search bar and buttons using CSS.
div.search {
display: block;
margin-left: auto;
margin-right: auto;
}
<div class="search">
<form action="https://google.com/search">
<br><input type="text" name="q"></br>
<input type="submit" value="Google Search">
<input type="submit" value="I'm Feeling Lucky">
</form>
</div>
Struggling with getting the search box and buttons to be centered correctly.