Tool page

Two Buttons and a Box
margin: 0; padding: 0; display: flex; justify-content: center; align-items: center; min-height: 100vh; } #container { display: flex; align-items: center; justify-content: space-between; width: 80%; max-width: 800px; } .button { background-color: #3498db; color: white; padding: 10px 20px; border: none; border-radius: 4px; cursor: pointer; } #leftButton { order: 1; } #rightButton { order: 3; } #box { flex-grow: 1; height: 300px; /* Set the height as needed */ border: 2px solid #001f3f; /* Dark blue border color */ margin: 0 20px; }