* {
    margin: 0;
    padding: 0;
}
body{
    background-color: aquamarine;
}
.wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
    background-color: aquamarine;
    font-family: Arial, Helvetica, sans-serif;
}
header{
    position: sticky;
    width: 100%;
    margin: 0 auto;   
    text-align: center;
    padding-bottom: 16px;
}
footer{
    position: relative;
    width: 100%;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    text-align: center;
    padding: 6px 0;
    background-color: teal;
    /*polygon shaped footer
    clip-path: polygon(
        0 25%,
        25% 0,
        75% 0,
        100% 25%,
        100% 100%,
        0 100%
    );*/
}
footer a p {
    color: white;
    padding: 6px 0;
}
h1{
    font-family: 'Tangerine', cursive;
    font-size: 40px;
    margin: 9px auto;
    color: brown;
}
h2{
    color: darkblue;
    font-weight: 100;
    text-align: center;
    margin-top: 5px;
}
a{
    text-decoration: none;
    color: black;
}
.homeBTN{
    position: absolute;
    top: 10px;
    left: 5px;
    height: 60px;
    width: 60px;
}
.homeBTN img{
    height: 45px;
    width: 45px;
    border-radius: 12px;
    box-sizing: border-box;
    border-top: 4px solid yellowgreen;
    border-right: 4px solid yellowgreen;
    border-bottom: 4px solid green;
    border-left: 4px solid green;
}
.homeBTN p{
    font-size: 12px;
}
.booking{
    position: absolute;
    top: 10px;
    right: 5px;
    height: 60px;
    width: 60px;
    font-size: 14px;
    line-height: 60px;
    color: white;
    background-color: blue;
    border-radius: 16px;
}
nav{
    background-color: teal;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    margin-bottom: 5px;
}
nav a {
    color: rgb(230,230,230);
    padding-top: 5px;
    padding-bottom: 5px;
}
.large_img{
    position: relative;
    margin: 0 auto;
    width: 95%;
}
.start_pic{
    width:100%;
}
.large_pic{
    width: 100%
}
.portfolio{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    color: rgb(209, 193, 193); /* szöveg színe */
    display: flex;
    transform: scale(0,1.35); /* ha (0,0) akkor a fénykép felső 50%-a a képenyő tetején kívülre kerül */
			      /* (0,1.35) látszódik a fotó felett a navigáció početna-galerija-o nama */
    transition: transform ease-in-out 50ms; /* 50ms a nagy sebesség elsikkasztja az 1.35-ös szorzót */
    transform-origin: top right;
}
.slika{
    position: relative;
    left: 50%;
    transform: translate(-50%,0%);
}
.portfolio:target{
    transform: scale(1,1);
    transform-origin: left;
}
.linkovi_za_slike{
    width: 100vw;
    display: flex;
    background-color: white;
    padding-top: 0.1em;
}
.small_pic{
    margin: 2px 3px;
    max-width: 92%;
}

.kratak_opis{
    position: relative;
    margin: 10px auto;
    text-align: justify;
    max-width: 95%;
}
.opsirnije{
    font-size: 0;
}
.opsirnije:target{
    font-size: 16px;
}
.youAreHere {
    background-color: aqua;
    padding-left: 15px;
    padding-right: 15px;
    color: blue;
}
@media(min-width:768px){
    .wrapper{
        position: relative;
        margin: 0 auto;
        width: 750px;
        background-color: aquamarine;
    }
    h1{
        font-size: 5em;
    }
    header{
        margin-bottom: 24px;
    }
    .homeBTN{
        height: 80px;
        width: 80px;
    }
    .homeBTN img{
        height: 80px;
        width: 80px;
        border-radius: 20px;
    }
    .homeBTN p {
        font-size: 18px;
    }
    .booking{
        height: 80px;
        width: 80px;
        font-size: 18px;
        line-height: 80px;
    }
    h2{
        font-size: 3em;
        margin: 9px auto 5px;
    }
    .language_bar{
        position: absolute;
        right: 10px;
        top: 100px;
    }
    .language_bar > a{
        margin-left: 15px;
    }
    .large_img{
        box-shadow: 0 0 12px black;
        height: 400px;
    }
    .linkovi_za_slike{
        position: relative;
        top: 7px;
        width: 100%;
    }

    header > p,
    header > a > p {
        font-size: 20px;
    }
    .kratak_opis > p {
        font-size: 1.3em;
    }
}
@media(min-width: 1200px){
    body{
        background-color: rgb(0,255,180);
    }
    .wrapper{
        width: 1180px;
        border-left: 2px solid rgb(0,255,200);
        border-right: 2px solid rgb(0,255,200);
    }
    header{
        margin-bottom: 48px;
    }
    footer{
        width: 1180px;
        padding: 16px 0;
    }
    h2{
        margin-bottom: 0;
    }
    header > p,
    header > a > p {
        font-size: 18px;
    }
    .booking{
        height: 100px;
        width: 100px;
        font-size: 24px;
        line-height: 100px;
    }
    .language_bar{
        top: 140px;
        font-size: 18px;
    }
    nav > a{
        font-size: 18px;
        letter-spacing: 0.1em; /* betű széthúzás */
    }
    .za_veci_ekran{
        display: flex;
        flex-direction: row-reverse;
    }
    .large_img{
        box-shadow: 0 0 12px black;
        width: 72%;
        height: 478px;
    }
    .linkovi_za_slike{
        flex-direction: column;
        position: relative;
        max-width: 15%;
        top: 7px;
        left: 60px;
    }
    .small_pic{
        display: block;
        margin: 2px auto;
        max-width: 90%;
    }
    .kratak_opis > p,
    .opsirnije > p {
        margin-top: 12px;
        font-size: 1em;
    }
}