body {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
}
.container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(to bottom right, #ff7e5f, #ff1a1a);
  color: white;
  text-align: center;
  flex-direction: column;
}
h1 {
  font-size: 3em;
}
p {
  font-size: 1.5em;
  margin-top: 20px;
}
footer {
  background-color: rgb(48, 48, 48);
  color: white;
  text-align: center;
  padding: 10px 0;
  width: 100%;
  position: fixed;
  bottom: 0;
}
