@font-face {
  font-family: 'NoRepub';
  src: url('./no-repub.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

html, body {
  height: 100%;
}

body {
  font-family: 'NoRepub', Arial, sans-serif;
  overflow: hidden;
  background: #ffffff;
  color: #000000;
}

.video-bg {
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  object-position: center center;
  z-index: -2;
}

.overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.18);
  z-index: -1;
}

.content {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  height: 100vh;
  padding-bottom: 150px;
  text-align: center;
}

.text-block {
  width: 100%;
}

h1 {
  width: 70%;
  margin: 0 auto;
  font-size: clamp(2.2rem, 6vw, 5.8rem);
  line-height: 0.95;
  text-transform: uppercase;
}

p {
  width: 40%;
  margin: 14px auto 0;
  font-size: clamp(1rem, 2vw, 1.6rem);
  line-height: 1.1;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .content {
    padding-bottom: 150px;
  }

  h1 {
    width: 70%;
    font-size: clamp(2rem, 10vw, 4.2rem);
    line-height: 0.95;
  }

  p {
    width: 40%;
    font-size: clamp(0.95rem, 4vw, 1.2rem);
    line-height: 1.15;
  }
}
