@import url('https://fonts.cdnfonts.com/css/garfield');
body, html {
    height: 100%;
    margin: 0;
}

#video-container {
    height: 100%;
    position: relative;
    text-align: center;
    color: white;
    font-size: 30px;
}

#youtube-video {
    width: 100%;
    height: 100%;
}

#message {
    position: absolute;
    top: 56%;
    left: 57%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 150px;
    background-color: #2E42C4;
    color: #C09A59;
    text-align: center;
    line-height: 150px; /* Высота строки равна высоте прямоугольника для вертикального центрирования текста */
    font-size: 90px;
    font-family: 'Garfield', sans-serif;
    text-shadow: 2px 3px 0px #000000;
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}
  