* {
    margin: 0;
    padding: 0;
    font-family: 'Lato', sans-serif;
}

#front-bg {
    width: 55%;
    margin: auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
}

main {
    flex: 1;
}

/* TYTUŁ & PODTYTUŁ */

#titles {
    text-align: center;
}

#titles h1 {
    font-size: 40px;
    padding: 25px 0px 5px 0px;
}

#titles h2 {
    font-size: 30px;
    font-weight: normal;
    padding-bottom: 15px;
}

/* NAVBAR */

#nav-list {
    padding: 10px;
    list-style-type: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.nav-link{
    margin: 3px;
    padding: 15px 25px;
    display: block;
    border-radius: 10px;
    font-size: 18px;
    text-decoration: none;
}

/* SEKCJE ARTYKUŁU */

.section {
    display: flex;
    gap: 15px;
    padding-top: 20px;
    flex-wrap: wrap;
    justify-content: center;
}


/* WYSTĘPOWANIE */

#occurrence img {
    width: 450px;
}

#occurrence article {
    width: 56vh;    
}

/* CECHY CHARAKTERYSTYCZNE */

#appearance img {
    width: 400px;
}

#appearance article{  
    order: 1;
    width: 61vh;
}

/* ROZMNAŻANIE */

#reproduction img {
    width: 450px;
}

#reproduction article {
    width: 56vh;
}

/* WSPÓLNE */

article {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
}

img {
    border-radius: 10px;
}

h3 {
    font-size: 25px;
    width: 90%;
    margin-bottom: 15px;
    border-radius: 10px;
    text-align: center;
}

p {
    font-size: 20px;
    line-height: 30px;
    width: 95%;
}

/* FOOTER */

footer hr {
    height: 2px;
    border: 0;
    margin-bottom: 10px;
}

footer {
    text-align: center;
    margin: 16px 0px 10px 0;
}


/* GALERIA */

#gallery {
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#gallery img {
    height: 300px;
}

