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

body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100vh;
  background: SteelBlue;
  transition: background 0.8s ease;
  font-family: Georgia, serif;
}

h1 {
  font-size: 32px;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  letter-spacing: 3px;
  text-transform: uppercase;
}

button {
  padding: 14px 44px;
  font-size: 14px;
  font-family: Georgia, serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

    button:active {
    transform: scale(0.97);
    }