* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("background.svg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

h1 {
  margin: 0;
  padding: 12px 24px;
  color: white;
  font-size: clamp(2rem, 6vw, 5rem);
  font-weight: 400;
  text-align: center;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 8px;
}