* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Roboto', sans-serif;
}

header{
    background-color: black;
    text-align: center;
}

header .logo img {
    width: 400px;
    height: 90px;
}

nav{
    text-align: center;
    font-size: 20px;
}

nav ul{
    list-style: none;
}

nav li{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

nav li:nth-child(1){
    background-image: url('/img/sniadanie.webp');
}

nav li:nth-child(2){
    background-image: url('/img/obiadkolacja.webp');
}

nav li:nth-child(3){
    background-image: url('/img/desery&przekaski.webp');
}

nav li:nth-child(4){
    background-image: url('/img/dodatki.webp');
}

nav li a{
    display: block;
    line-height: 24vh;
    background-color: rgba(0,0,0,0.6);
    color: white;
    text-decoration: none;
    transition: 0.4s;
}

nav li a:hover{
    background-color: rgba(0,0,0,0.8);
}

main{
    background-color: black;
    color: white;
}

main h1{
    padding: 20px 0;
    font-size: 22px;
    text-align: center;
}

main .text{
    margin: 0 auto;
    width: 90%;
    text-align: justify;
}

main p{
    padding: 12px 0;
}

@media (min-width: 1024px){
    nav ul{
        display: flex;
    }

    nav li{
        flex-grow: 1;
    }

    nav li a{
        line-height: 70vh;
        font-size: 28px;
    }

    main h1{
        font-size: 32px;
    }

    main .text{
        width: 80%;
        font-size: 18px;
    }
}

@media (max-width: 450px) {
    header .logo img {
        width: 257px;
        height: 57px;
    }
}