@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

html, body {
	height: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Poppins', sans-serif;
  background-color: #f9f9f9;
  color: #4a3e35;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px 20px;
	
}

.logo {
  width: 250px;
  margin-bottom: 20px;
  transition: opacity 0.3s;
}

.logo:hover::after {
  content: 'Visit our main site';
  display: block;
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

h1 {
  margin-bottom: 30px;
  font-size: 22px;
  font-weight: 500;
}

.flags {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.flag {
  width: 180px;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.flag:hover {
  animation: pulse 1.5s ease 2;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.flag:hover::after {
  content: attr(data-hover);
  display: block;
  font-size: 12px;
  color: #888;
  margin-top: 6px;
}

.footer {
  text-align: center;
  font-size: 13px;
  color: #888;
  padding: 20px 10px;
  background-color: #f1f1f1;
  flex-shrink: 0;
}

.footer a {
  color: #c6a348; /* złoty kolor z logo */
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}
@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1);
  }
}

@media (max-width: 600px) {
  .flag {
    width: 120px;
  }

  h1 {
    font-size: 18px;
  }

  .logo {
    width: 130px;
  }

  .flags {
    gap: 25px;
  }

  footer {
    font-size: 12px;
  }
}


