#btn-click-me {
  background-color: black;
  color: white;
  border-radius: 5px;
  padding: 10px;
  text-align: center;
}

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

body {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
  height: 100vh; /* full screen height */
  margin: 0; /* remove default body margin */
  background-color: #d2691e;
}
