* {
    margin: 0px auto;
    padding: 0px;
    box-sizing: border-box;

}
html{
    position: relative;
}

body {
    width: 100vw;
    background-color: rgb(41, 166, 220);
    cursor: default;
    height: auto;
    /* overflow: hidden; */
}



.latajacy {
    position: fixed;
    left: 50%;
    transform: translate(-50%);
    top: 1%;
    height: 8%;
    max-height: 50px;
    overflow: hidden;
    z-index: 2;
    animation: latajacy_obrazek 1 10s ease-in-out;
}

.latajacy img {
    width: 100%;
    height: 100%;
    opacity: 0.9;
}

@keyframes latajacy_obrazek {
    0% {
        visibility: visible;
        left: 0%;
        top: 1%;
    }

    25% {
        left: 100%;
        transform: translate(-100%);
        top: 1%;

    }

    50% {
        left: 0%;
        transform: translate(0%);
        top: 1%;
    }

    75% {
        left: 100%;
        /* transform: translate(-100%); */
        top: 1%;

    }

    100% {
        left: 50%;
        top: 1%;
        transform: translate(-50%);

    }
}

.okno_glowne {
    margin-top: 6%;
    display: block;
    border: beige 2px solid;
    width: 100%;
    height: auto;
    cursor: default;
    overflow: hidden;
}
.menu_contener {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 30px 120px;
        grid-template-columns: 30px 120px;
    position: fixed;
    width: auto;
    height: auto;
    right: -100px;
    top: 10px;
    overflow: hidden;
    -webkit-transition: 0.5s;
    transition: 0.5s;
    z-index: 100;
  }
  
  .menu_contener:hover {
    right: 10px;
  }
  
  .menu_contener:hover .menu_click {
    visibility: hidden;
  }
  
  
  
  .menu_click {
    border: 2px solid black;
    padding: 5px 5px;
    text-align: center;
    width: auto;
    height: 30px;
    font-weight: 600;
  }
  
  .menu_choice {
    display: block;
    background-color: 0;
    width: auto;
    padding-left: 20px;
  }

  .menu_show {
    right: 10px;
  }
  .menu_choice a {
    display: block;
    text-decoration: none;
    color: #000000;
    background-color: #29a6dc;
    font-size: 18px;
    text-align: center;
    border: 1px solid lightgray;
    padding: 3px 5px;
    margin-bottom: 7px;
  }
  

.opcja {
    display: block;
    width: 100%;
    height: 30%;
    border: beige 5px solid;
    background: rgba(100, 100, 100, 0.3);
    overflow: hidden;
    transition: 0.3s;
    display: grid;
    grid-template-columns: 30% auto;
    /* justify-content: center; */
    align-items: center;
}

.zdjecie {
    display: block;
    width: 98%;
    overflow: hidden;
    margin: 0 0;
    
}

.tresc {
    display: block;
    font-size: 22px;
    text-align: center;
}

.zdjecie img:active {
    transform: scale(2, 2);
}

.zdjecie img {
    width: 100%;
    display: block;
    cursor: pointer;
    transition: 0.5s;
    resize: horizontal;
}

.tresc h1,
p {
    text-transform: uppercase;
}

.stopka {
    position: fixed;
    bottom: 0;
    width: 100%;
    text-align: center;
    line-height: auto;
    text-transform: uppercase;
    padding: 6px 0px;
    background: rgba(0, 0, 0, 0.3);
    color: beige;
}

.stopka p {
    transition: 0.2s;
}

.stopka p:hover {
    transform: rotateX(180deg);
}

@media (min-width:651px) and (orientation: landscape) {
    body {
       max-width: 1200px;
    }
    .okno_glowne{
        width: 99%;
    }
    .latajacy {
        height: 35px;
    }
}

@media (max-width: 650px) and (orientation: landscape) {
    .okno_glowne{
        width: 99%;
    }

    .latajacy {
        height: 35px;
    }

    .tresc {
        margin: 0px 0px 0 3px;
        font-size: 13px;
        vertical-align: middle
    }
    .stopka p {
        font-size: 10px;
    }

}

@media (max-width: 600px) and (orientation: portrait) {
    body {
        width: 100vw;
        margin-top: 13%;
    }

    .okno_glowne{
        width: 99%;
    }

    .latajacy {
        max-height: 25px;
    }


    .tresc {
        font-size: 13px;
    }

    .tresc h1 {
        font-size: 15px;
        text-align: center;
    }

    .stopka p {
        font-size: 10px;
    }

    
}