@font-face {
    font-family: 'Determination Mono';
    src: url('fonts/determination-mono.ttf') format('truetype');
}

body {
      background-color: black;
	  background-repeat: no-repeat;
      background-size: auto;
	  background-position: 2.78vw 0;
      background-attachment: fixed;
      color: white;
      font-family: 'Determination Mono', monospace;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      height: 100vh;
}

#dialogue-box {
      background-color: #000000;
      border: 6px solid white;
      color: white;
      height: 220px;
      width: 700px;
      line-height: 120%;
      text-decoration: none;
      display: flex;
      align-items: center;
      position: absolute;
      margin-bottom: 20px;
	  z-index: 1000;
    }

 #dialogue-box img {
      width: 170px;
      height: 170px;
      margin-right: 30px;
    }

    #dialogue-text {
	  font-family: 'Determination Mono', monospace;
      font-size: 18pt;
      margin-right: 30px;
      white-space: nowrap;
      overflow: clip;
	  width: 600px;
      animation: typing 2.5s steps(40, end), blink-caret .75s step-end infinite;
	  position: relative;
      top: -70px;
    }

    @keyframes typing {
      from {
        width: 0
      }
      to {
        width: 100%
      }
    }

    @keyframes blink-caret {
      from,
      to {
        border-color: transparent
      }
      50% {
        border-color: white
      }
    }

    #answer-buttons {
      display: flex;
      justify-content: space-evenly;
      width: 100%;
      margin-top: 70px;
	  position: absolute;
      bottom: 0;
      left: 0;
    }

    .answer-button {
      color: white;
      text-decoration: none;
      cursor: pointer;
      transition: color 0.3s;
    }

    .answer-button:hover {
      color: yellow;
    }

    .answer-button:hover::before {
      content: '❤️';
      color: red;
      margin-right: 5px;
    }
	
#fixed-image-container {
  position: fixed; /* Фиксирует элемент относительно окна */
  top: 50%; /* Центрирует вертикально */
  left: 50%; /* Центрирует горизонтально */
  transform: translate(-50%, -50%); /* Точное центрирование */
  z-index: 1000; /* Убедитесь, что картинка поверх остальных элементов */
}

#fixed-image-container img {
  max-width: 100%;
  height: auto;
}