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

html, body {
  width: 100%;
  height: 100%;
  overflow: hidden;
  font-family: system-ui, sans-serif;
  color: white;
}

.background {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 110%;
  height: 110%;
  background-image: url("/KURT.jpg");
  background-size: cover;
  background-position: left center;
  transform: translate(-50%, -50%) scale(1.05);
  will-change: transform;
  z-index: -1;
}

.content {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  backdrop-filter: brightness(0.9);
}

h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

p {
  font-size: 1.2rem;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .background {
        background-position: 13% top;
    transform: translate(-50%, -50%) scale(1.1);
  }
}
