<style>
body {
font-family: Arial, sans-serif;
text-align: center;
margin: 0;
padding: 20px;
}

p {
font-size: 1rem;
color: #333;
}

.buttons-list-wrapper {
display: grid;
gap: .65rem;
margin-top: 1.25rem;
}

.buttons-list-wrapper > .buttons-list-item {
align-items: center;
display: flex;
flex-wrap: wrap;
gap: .5rem;
}

.buttons-list-wrapper > .buttons-list-item > input[type="button"] {
background: #007BFF !important;
border: none;
border-radius: 5px;
color: #fff;
cursor: pointer;
font-size: 1rem;
padding: 10px 20px;
transition: background-color 0.3s;
}

.buttons-list-wrapper > .buttons-list-item > input[type="button"]:hover {
background-color: #0056b3;
}
</style>