/* Globalne ustawienia */
* {
    box-sizing: border-box;
    padding: 0;
}

body {
    width: 70%;
    background-color: rgb(232, 143, 10);
    margin: auto;
    font-family: 'Trebuchet MS';
}

/* Banner */
.banner {
    height: 20%;
}

.banner img {
    width: 100%;
    float: left;
}

/* Nawigacja */
nav {
    background-color: black;
    font-size: 17px;
    display: flex;
    justify-content: space-between;
    padding: 10px;
}

nav .redirect a {
    color: rgb(214, 120, 13);
}

.bookmarks {
    height: 100%;
}

.bookmarks a {
    color: white;
    margin: 10px;
    text-transform: uppercase;
    text-decoration: none;
}

.bookmarks a:hover {
    color: rgb(105, 224, 68);
    transition: background-color 0.3s ease, color 0.3s ease, font-weight 0.3s ease;
}

.bookmarks a.active {
    color: green;
}

.redirect a {
    text-transform: uppercase;
}

.redirect a:hover {
    color: white;
}

/* Sekcja główna */
main{
width: 100%;
height: 100%;
background-color: #fcfbf9;
float: left;
}

.buttons{
    width: 60%;
    margin: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 5px;
    
}
.buttons button{
    width: 15vh;
    height: 5vh;
    border: 1px solid rgb(179, 133, 43);
    background-color:rgb(248, 159, 58) ;
    color: rgb(255, 255, 255);
    margin: 8px;
    cursor: pointer;
    border-radius: 15px;
    font-size: 20px;
    font-weight: bold;
    font-family: Helvetica, sans-serif;
    text-shadow: 2px 1px black;
    transition: all .2s ease-in;
    box-shadow: 2px 2px 3px black;
    
    
    
    
}
.buttons button:hover{
    background-color: rgb(239, 175, 39);
    box-shadow: 6px 3px 8px black;     
    outline: none;     
    
}


 button.year_active{
    
    background-color: rgb(81, 125, 24);
}
#realizations_p{
    text-align: center;
    font-family: Helvetica, sans-serif;
    font-size: 50px;
    font-weight: bold;
    text-shadow: 2px 1px 2px gray;
}
h2{
    text-align: center;
    font-size: 40px;
    font-weight: lighter;
}
.year{
    font-weight: bold;
}
.text {
    width: 100%;               /* dostosowuje szerokość do rodzica */
    max-width: 700px;          /* opcjonalnie ograniczenie max szerokości */
    margin: 0 auto;            /* wycentrowanie */
    padding: 10px;
    word-wrap: break-word;     /* starsze przeglądarki */
    overflow-wrap: break-word; /* nowsze standardy */
}

.text ul {
    padding-left: 20px;        /* wcięcie listy */
    list-style-type: disc;
}

.text li {
    margin-bottom: 10px;       /* odstęp między punktami */
    white-space: normal;       /* wymusza zawijanie tekstu */
    font-size: 20px;
    font-family: Helvetica, sans-serif;
}

/* Stopka */
footer {
    clear: both;
    background-color: rgb(28, 2, 2);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 50px;
    font-size: 16px;
}

/* Linki globalnie */
a {
    text-decoration: none;
}