* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #000000;
  color: #ffffff;
  font-family: 'Monospace', sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  text-align: center;
  animation: fadeIn 1.5s ease-in;
  padding: 1rem;
  overflow: hidden;
}

.container {
  padding: 2rem;
}

.logo {
  width: 480px;
  max-width: 90vw;
  margin-bottom: 0.2rem; /* smanjen razmak ispod loga */
}

.subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 5rem;
  letter-spacing: 3px;
}

.email {
  display: inline-block;
  font-size: 1rem;
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s;
  font-family: Monospace;

}

.email:hover {
  color: #00aaaa;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}



