body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sans-serif;
}

.box {
  background-color: #3061a8;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}

p {
  background-color: yellow;
  padding: 10px;
  border-radius: 8px;
}

button {
  padding: 25px;
  font-size: 16px;
  border-radius: 25px;
  background-color: #808080;
}
