body {
  font-family: Arial, sans-serif;
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.container {
  text-align: center;
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5em;
  color: #333;
}

h2 {
  font-size: 1.5em;
  color: #666;
}


.social-links {
  margin-top: 20px;
}

.social-links a {
  margin: 0 10px;
  text-decoration: none;
  color: #333;
  font-size: 1.2em;
}

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

.flags img {
    max-width: 60%;
    margin: 0 10px;
}

@media (max-width: 768px) {
    .flags img.logo {
        max-width: 100%;
    }
}