body {
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  background-color: gray;
  font-family: Arial, sans-serif;
  color: white;
  text-align: center;
}


.content {
  z-index: 1;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  padding: 10px;
  display: inline-block;
  opacity: 0;
  transform: translateX(-100%);
  animation: slideIn 4s forwards; /* Poziva animaciju slideIn */
}

.logo img {
  max-width: 400px;
  height: auto;
  display: block;
}

.small-image img {
  max-width: 100px;
  height: auto;
  margin: 20px 0;
}

footer {
  width: 100%;
  text-align: center;
  padding: 10px 0;
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}

a {
  color: blue; /* Plava boja za link */
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Definicija animacije */
@keyframes slideIn {
  to {
      opacity: 10;
      transform: translateX(0);
  }
}
