body {
  margin: 0;
  background-color: #00eaff; /* яркий фон */
  font-family: 'Georgia', serif;
  color: #8b0000; /* тёмно-красный текст */
}

.container {
  display: flex;
  height: 100vh;
  padding: 50px;
}

.left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.left h1 {
  font-size: 6rem;
  color: white;
  text-shadow: 0 0 10px white; /* эффект свечения */
  margin: 0;
}

.right {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 1.5rem;
  font-style: italic;
  line-height: 2.2rem;
}

.footer {
  position: fixed;
  bottom: 10px;
  right: 20px;
  font-size: 0.75rem;
  color: rgba(0, 0, 0, 0.5);
  font-family: 'Georgia', serif;
}

