/* ========================== */
/*   GŁÓWNE ELEMENTY STRONY   */
/* ========================== */

html {
    scroll-behavior: smooth;
    scroll-padding-top: 150px;
}

body {
    background-image: url('tlo_goth.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    max-width: 1500px;
    margin: auto;
    background-attachment: fixed;
}

main {
    background: rgba(0,0,0,0.5);
    padding: 20px;
    border-radius: 20px;
    margin: 60px;


}

/* ========================== */
/*         NAWIGACJA          */
/* ========================== */

nav {
    text-align: center;
    color: white;
}

a {
    text-decoration: none;
    padding: 30px;
    margin: 6px;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 13px;
    font-weight: bold;

}

a:link,a {
    color: white;
    
}

a:hover {
    color:white;
    font-size: 13px;
    background-color: #000000;
    border-radius: 10px;
    margin: 6px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;

}



/* ========================== */
/*          HEADER            */
/* ========================== */

h1 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 50px;
    font-weight: bold;
    width: 100%; 
    padding: 20px;
    text-align: center;
    color: white;

}

header {
    background-image: url(tlo_h1.jpg);
    padding: 20px 30px 20px;
    margin: auto;
    margin-top: 30px;
    margin-bottom: 20px;
    margin-left: 120px;
    margin-right: 120px;
    border-radius: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* ========================== */
/*          NAGŁÓWKI          */
/* ========================== */

h2 {
    font-family:Georgia, 'Times New Roman', Times, serif;
    font-size: 40px;
    font-weight: bold;
    margin-left: 50px;
    width: 90%; 
    padding: 20px;
    text-align: left;
    color: white;
    margin-top: 50px;
    margin-bottom: 50px;
}

/* ========================== */
/*           SEKCJA           */
/* ========================== */

section {
    
}

.lewo {
    margin-left: 30px;
    width: 45%;
    max-width: 50%;
    text-align:justify;
    justify-content: left;
    display: flex;
    flex-wrap: wrap;
}

.prawo {
    justify-content: right;

}

p {
    color: white;
    font-family: Georgia, 'Times New Roman', Times, serif;
    font-size: 20px;
}

.tlo {
    width: 100%;
    height: auto;
}

ol {

}

/* ========================== */
/*           GALERIA          */
/* ========================== */

.galeria {
    padding: 20px 20px 20px;
    margin: auto;
}


.galeria-zdjecia {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}


.zdjecie {
    position: absolute;
    margin-left: 800px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.zdjecie img {
    width: auto;
    height: 650px;
}

.zdjecie:hover {
    transform: scale(1.05);
}

.srodek {
    justify-items: center;
}



/* ========================== */
/*           STOPKA           */
/* ========================== */

footer {
    color: #F2F2F2;
    padding: 10px 0px 40px;
    text-align: center;
    margin-top: 100px;
    justify-content: center;
}
  
.footer-content {
    max-width: 1200px;
    margin: auto;
}
  
footer p {
    font-size: 1rem;
    margin-bottom: 10px;
}