body {
  font-family: Arial, sans-serif;
  background-color: #f0f4f8;
  color: #333;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.container {
  background-color: #fff;
  width: 90%;
  max-width: 600px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}

h1 {
  color: #0077cc;
  margin-bottom: 15px;
}

pre {
  background-color: #f8f9fa;
  padding: 10px;
  border-radius: 5px;
  text-align: left;
  overflow-x: auto;
  font-size: 0.95rem;
}

p {
  margin: 10px 0;
  line-height: 1.5;
}

/* Responsivnost */
@media (max-width: 600px) {
  .container {
    padding: 15px;
  }

  h1 {
    font-size: 1.4rem;
  }
}
