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

html {
    background-color: #95D7F4;
    scroll-behavior: smooth;
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}


header img {
    position: absolute;
    top: 0%;
    left: 50%;
    transform: translate(-50%, 0%);
    width: 10%;
}

section.main {
    margin: 7.5% auto 5%;
    background-color: #0695D1;
    border-radius: 50px;
    padding: 3%;
    width: 60%;
    box-shadow: 0px 0px 50px 4px rgba(66, 68, 90, 1);
    z-index: 1;
    overflow: hidden;
}

h1 {
    width: 85%;
    margin: 2% auto 2%;
    font-size: 50px;
    font-family: 'Saira Condensed', sans-serif;
    text-align: center;
    color: white;
    text-transform: uppercase;
}

h2 {
    font-size: 25px;
    font-family: 'Saira Condensed', sans-serif;
    text-align: center;
    color: white;
    text-transform: uppercase
}

h3 {
    font-size: 25px;
    font-family: 'Saira Condensed', sans-serif;
    margin: 150px auto 10px;
    color: white;
    width: 75%;
}

p {
    font-size: 20px;
    font-family: 'Saira Condensed', sans-serif;
    margin: -3% auto;
    color: aqua;
    text-align: center;
}

div.grafik img {
    width: 75%;
}

div.booking {
    margin: 3%;
    margin-bottom: 3%;
    text-align: center;
}

a.book:hover {
    border: 2px solid black;
    color: white;
    background-color: black;
    transition: 0.3s;
}

a.book {
    font-family: 'Saira Condensed', sans-serif;
    text-align: center;
    padding: 1%;
    background-color: greenyellow;
    border-radius: 10px;
    color: black;
    font-size: 25px;
    border: 2px solid greenyellow;
    text-decoration: none;
    transition: 0.3s;
}

i {
    margin-right: 1%;
}

div.grafik {
    text-align: center;
}

@media (orientation: portrait) and (min-width: 360px) {

    header img {
        width: 30%;
        overflow: hidden;
        margin-top: -4%;
    }

    section.main {
        width: 90%;
        margin-top: 18.5%;
        padding: 5%;
        border-radius: 20px;
    }

    h1 {
        font-size: 20px;
    }

    h2 {
        font-size: 10px;
    }

    h3 {
        width: 100%;
        margin-top: 20%;
        font-size: 14px;
    }

    p {
        font-size: 10px;
    }

    a.book {
        font-size: 10px;
    }

    i {
        margin-right: 3%;
    }

    div.grafik img {
        text-align: center;
        width: 100%;
    }

}


h1.zdd {
    font-size: 50px;
    padding-top: 3%;
}

div.oz {
    text-align: center;
}

div.pp {
    text-align: center;
}

img.op {
    transition: all 0.3s ease-in-out;
    border-radius: 25px;
    width: 55%;
    margin-bottom: 3%;
}

.zdd {
    margin-top: 10%;
    margin-bottom: -12.5%;
}


@media (orientation: portrait) and (min-width: 300px) {
    img.op {
        width: 80%;
    }

    h1.zdd {
        font-size: 20px;
    }
}

#menuToggle {
    display: block;
    position: fixed;
    top: 5%;
    right: 12.5%;
    z-index: 1;
    /*    warstwa hamb*/
    -webkit-user-select: none;
    user-select: none;
}

#menuToggle a {
    font-family: 'Saira Condensed', sans-serif;
    text-decoration: none;
    color: white;
    transition: color 0.3s ease;
    padding: 10px;
    font-size: 22px;
}

#menuToggle a:hover {
    color: tomato;
}


#menuToggle input {
    display: block;
    width: 40px;
    height: 32px;
    position: absolute;
    top: -7px;
    left: -5px;
    cursor: pointer;
    opacity: 0;
    z-index: 2;
    -webkit-touch-callout: none;
}

/*hamburger*/
#menuToggle span {
    display: block;
    width: 33px;
    height: 4px;
    margin-bottom: 5px;
    position: relative;
    background: black;
    /*kolor na openie*/
    border-radius: 3px;
    z-index: 1;
    transform-origin: 4px 0px;
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0),
        opacity 0.55s ease;
}

#menuToggle span:first-child {
    transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
    transform-origin: 0% 100%;
}

/* 
 górny hamb na hidzie + kolor
 */
#menuToggle input:checked ~ span {
    opacity: 1;
    transform: rotate(45deg) translate(-2px, -1px);
    background: black;
    /*kolor na hide*/
}

/*
 srodkowy hamb na hidzie + kolor
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
    opacity: 0;
    transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 dolny hamb na hidzie + kolor
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
    transform: rotate(-45deg) translate(0, -1px);
}

/*
 pozycja hamb
 */
#menu {
    position: absolute;
    width: 500px;
    margin: -100px 0px 0px -50px;
    padding: 50px;
    padding-top: 125px;
    background-color: #0695D1;
    list-style-type: none;
    -webkit-font-smoothing: antialiased;
    transform-origin: 0% 0%;
    transform: translate(200%, 0);
    /*    poza polem widzienia*/
    transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0);
    overflow: hidden;
    border: 2px solid white;
    border-radius: 10%;
}

#menu a {
    display: inline-block;
    padding: 7.5px;
}

#menuToggle input:checked ~ ul {
    transform: none;
    margin-left: -50px;
}

@media (orientation: portrait) and (min-width: 300px) {

    #menuToggle span {
        width: 18px;
        height: 2px;
        margin-bottom: 2px;
    }

    #menuToggle {
        right: 5%;
    }

    #menuToggle a {
        font-size: 13.5px;
        margin-left: -35px;
    }

    #menuToggle input:checked ~ ul {
        transform: none;
        margin-left: -65px;
    }

}
