@import url('https://fonts.cdnfonts.com/css/lemon-tuesday');
@import url('https://fonts.cdnfonts.com/css/eraser');
@import url('https://fonts.googleapis.com/css2?family=Carlito:ital,wght@0,400;0,700;1,400;1,700&display=swap');
* { box-sizing: border-box; }
body {
    /*background-color: lightseagreen;*/
    background-image: url(img/tlo-big.png);
    background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
    background-color: #1F3E3E;
    /*#5B6256;*/
    font: normal 20px Calibri, Carlito, serif;
    margin: 0;
    padding: 0;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
}
header {
    height: 300px;
    margin-bottom: 40px;
}
a {
    text-decoration: none;
}
div#klasy1-3, div#klasy7-8
    {
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content:space-between;
        margin-bottom: 40px;
    }
/*div#klasy7-8 {justify-content: space-around;}*/

a.kl1-3
    {
        display: inline-block;
        width: 300px;
        padding-bottom: 10px;
        font-size: 30px;
        font-family: Eraser, 'lemon tuesday';
        color: #FDF6FD;
        margin-bottom: 40px;
    }


a#kl1 {background-color: #E5322D;}
a#kl2 {background-color: #2A4B98;}
a#kl3 {background-color: #39C2CA;}
a#kl7 {background-color: #CA6B1B;}
a#kl8 {background-color: #A4AB10;}
a#inne {background-color:#A5DEF1;}

nav {
    width: 1000px;
    /*background-color:antiquewhite;*/
}

nav ul 
    {
        display: inline-block;
        margin: 0;
        padding: 0;
        background-color:antiquewhite;
    }

nav ul li
    {
        display: inline-block;
        margin: 0;
        margin-left: -4px;
    }
    nav ul li:first-child {margin-left: 0;}

nav ul li a
    {
        display: inline-block;
        padding: 10px 15px;
        text-decoration: none;
        font-weight: bold;
        color: forestgreen;
        border-right: solid 1px green;
        transition: all .2s linear;
    }
nav ul li a:hover
    {
        color:yellowgreen;
        border-color: limegreen;
        background-color:bisque;
    }