body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #2a2a2a;
  font-family: Arial, sans-serif;
  margin: 0;
  color: #f0f0f0;
  text-align: center;
}

main {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  padding: 20px;
  border: 2px solid #555;
  border-radius: 10px;
  background-color: #323232cc;
  box-shadow: 0 4px 20px #0000004d;
  transition: transform 0.3s ease;
}

h2 {
  font-size: 3rem;
  font-weight: 700;
  padding: 20px;
  border: 2px solid #555;
  border-radius: 10px;
  background-color: #323232cc;
  box-shadow: 0 4px 20px #0000004d;
  margin-bottom: 20px;
}

h1:hover,
h2:hover {
  transform: scale(1.05);
}

footer {
  padding: 10px 0;
  background-color: #282828e6;
  border-top: 1px solid #444;
  width: 100%;
  position: relative;
}
