@charset "UTF-8";
body {
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: #f0f2f5; /* Svetlo šedé pozadie */
  color: #333;
  text-align: center;
}

.container {
  background-color: #ffffff;
  padding: 40px 60px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  width: 90%;
  animation: fadeIn 1.5s ease-in-out;
}

h1 {
  color: #2c3e50;
  font-size: 2.8em;
  margin-bottom: 20px;
}

p {
  font-size: 1.2em;
  line-height: 1.6;
  margin-bottom: 25px;
}

.character-placeholder img {
  max-width: 80%;
  height: auto;
  margin-top: 30px;
  margin-bottom: 30px;
  border-radius: 5px; /* Jemné zaoblenie rohov obrázka */
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Responzívny dizajn pre menšie obrazovky */
@media (max-width: 768px) {
  .container {
    padding: 30px 40px;
  }
  h1 {
    font-size: 2em;
  }
  p {
    font-size: 1em;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 20px 30px;
  }
  h1 {
    font-size: 1.8em;
  }
}/*# sourceMappingURL=style.css.map */