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

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;

  background-image: url("images/katarina-hero.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  font-family: Arial, sans-serif;
  overflow: hidden;
  position: relative;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.container {
  text-align: center;
  padding: 40px;
  position: relative;
  z-index: 2;
}

h1 {
  font-size: 5rem;
  letter-spacing: 4px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: rgb(255, 255, 255);
}

p {
  font-size: 1.2rem;
  color: #d0d0d0;
}

.glow {
  text-shadow:
    0 0 10px rgba(255,255,255,0.6),
    0 0 20px rgba(255,255,255,0.4),
    0 0 40px rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  p {
    font-size: 1rem;
  }
}