html {
    height: 100%;
}

.page {
    height: 100%;
    width: 100%;
    position: relative;
    display: flex;
    margin: 0;
    font-family: Raleway;
} 

.page::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background-color: rgb(255 255 255 / 0.3);
}

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

.page__title {
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
    font-size: 116px;
    font-weight: 800;
    line-height: 136.18px;
    letter-spacing: 0.035em;
    text-align: center;
    text-transform: uppercase;
}

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

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

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