* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #141414; /* Jasne tło */
    color: #282828; /* Ciemny tekst */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh; /* Wysokość widoku */
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1; /* Zajmuje pozostałą przestrzeń */
}

.flag {
    max-width: 50%; /* Umożliwia responsywność */
    height: auto; /* Utrzymuje proporcje */
}

footer {
    text-align: center;
    padding: 10px 0;
    background-color: #070707;
    margin-top: auto; /* Przesuwa stopkę na dół */
    width: 100%;
}
