/* Reset osnovnih margina i paddinga */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000;
  color: #fff;
  font-family: Arial, sans-serif;
  height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Glavni dio koji zauzima preostali prostor */
.main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container {
  width: 100%;
  max-width: 600px;
  padding: 0 20px;
}

/* Stilizacija loga */
.logo {
  font-family: 'Roboto', sans-serif; /* Koristimo Roboto kao zamjenu za Google font */
  font-size: 64px;
  text-align: center;
  margin-bottom: 40px;
}

/* Stil za zrcaljeno slovo */
.mirrored {
  display: inline-block;
  transform: scaleX(-1);
}

/* Stilizacija forme */
.search-form {
  display: flex;
  justify-content: center;
}

.search-form input {
  flex: 1;
  padding: 10px;
  font-size: 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  outline: none;
}

.search-form button {
  padding: 10px 20px;
  font-size: 16px;
  border: none;
  background-color: #444;
  color: #fff;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.search-form button:hover {
  background-color: #666;
}

/* Stilizacija footer linkova */
footer {
  padding: 20px 0;
  text-align: center;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  display: inline;
  margin: 0 15px;
}

.footer-links li a {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
}

.footer-links li a:hover {
  text-decoration: underline;
}
