*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  height: 100%;
}

.page {
  position: relative;
  display: flex;
  min-width: 800px;
  height: 100%;
  margin: 0;
}

.page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: rgba(255, 255, 255, .3);
}

.page__title {
  z-index: 1;
  max-width: 720px;
  margin: 0 auto;
  padding-top: 60px;
  font-family: 'Raleway', sans-serif;
  font-weight: 800;
  font-size: 116px;
  letter-spacing: 4px;
  line-height: 136px;
  text-align: center;
  text-transform: uppercase;
}

.page__title::after {
  content: "*";
  position: relative;
}

.page__title:hover {
  color: #4C4C4C;
  cursor: default;
}

.page__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page__title:hover::before {
  content: 'На самом деле нет.\AВажнее &mdash; научиться ошибаться.';
  position: absolute;
  color: #000;
  top: 180px;
  right: 20px;
  max-width: 760px;
  border: 2px solid black;
  border-radius: 20px;
  padding: 36px 44px;
  box-shadow: 0 12px 0 #000;
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 35px;
  line-height: 35px;
  letter-spacing: normal;
  text-align: left;
  text-transform: initial;
  background-color: #fff;
  white-space: pre;
}