* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  overflow: hidden;
}

/* VIDEO */

.video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* OVERLAY */

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.65);
}

/* CONTENT */

.content {
  position: relative;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 22px;
  text-align: center;
}

/* LOGO */

.logo {
  width: 60px;
  opacity: 0.85;
}

/* TITLE */

h1 {
  font-size: 34px;
  letter-spacing: 8px;
  font-weight: 500;
}

/* TAGLINE */

.tagline {
  font-size: 14px;
  color: #aaa;
  letter-spacing: 2px;
}

/* LINE */

.line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.2);
}

/* COMING */

.coming {
  font-size: 11px;
  letter-spacing: 5px;
  color: #8b0000;
}