body {
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
 
    box-sizing: border-box;
}

header {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 10px;
}

.banner-image {
    max-width: 100%;
    height: auto;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-container img {
    margin: 0px;
    margin-right: 300px; 
}

h1 {
    font-weight: 700;
    margin-right: 440px;
  
}

nav {
    background-color: #fdfda2;
    display: flex;
    flex-wrap: wrap; /* Pozwala łamać menu w małych ekranach */
    justify-content: center;
    padding: 10px 0;
}

nav a {
    color: #000;
    text-decoration: none;
    padding: 10px 29px;
    margin: 0 31px;
    font-size: 18px;
    font-weight: bold;
    transition: background-color 0.3s;
}

nav a:hover {
    background-color: #ffffff;
    border-radius: auto;
}
li{
    text-align: justify;
}

#text {
    font-size: larger;
    text-align: center;
    display: inline;
    max-width: 60%;

}

footer {
    text-align: center;
    margin-top: 20px;
    padding: 20px;

    font-size: 24px;
}
