* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: Arial, sans-serif;
  background-color: #f0f0f0;
}

.container {
  text-align: center;
}

h1 {
  font-size: 4em;
  margin-bottom: 20px;
}

p {
  font-size: 1.5em;
  margin-bottom: 10px;
}

button {
  padding: 15px 30px;
  font-size: 1.5em;
  background-color: #ff6347;
  border: none;
  color: white;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
}

button:hover {
  background-color: #ff4500;
}

button:active {
  background-color: #ff0000;
}

button {
  position: absolute;
}
