
* {
  box-sizing: border-box;
  font-family: "Courier New", monospace;
}

section {
  scroll-margin-top: 700px;
}
body {
  margin: 0;
}

.scene {
  min-height: 100vh;
  position: relative;
}

.paper-form {
  position: absolute;

  top: 12%;
  left: 50%;
  transform: translateX(-50%);

  width: 360px;
  padding: 40px 30px 30px;

  background: transparent;
}

.paper-form input,
.paper-form textarea {
  width: 100%;
  margin-bottom: 18px;
  padding: 6px 4px;

  border: none;
  border-bottom: 1px solid #444;
  background: transparent;

  font-size: 14px;
}

.paper-form input:focus,
.paper-form textarea:focus {
  outline: none;
  border-bottom: 2px solid #000;
}

.paper-form textarea {
  height: 80px;
  resize: none;
}

.paper-form button {
  display: block;
  margin: 10px auto 0;
  padding: 8px 20px;

  background: #222;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.paper-form button:hover {
  background: #000;
}

.form-message {
  margin-top: 10px;
  text-align: center;
  font-size: 13px;
}

.hero {
  position: relative;
  height: 70vh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.video-wrapper {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.video-wrapper video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero h1 {
  color: white;
  font-size: 4rem;
  z-index: 1;
}