* {
  box-sizing: border-box;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Segoe UI", Arial, sans-serif;
  background:
    linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.45)),
    url("./background.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

h1 {
  font-size: clamp(42px, 8vw, 96px);
  font-weight: 600;
  text-align: center;
  margin: 0;
  padding: 24px;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.6);
}