
hr {
    border: 1px solid rgba(0, 0, 0, 0.2);
    width: 90%;
}


.celek {
    width: 60%;
    margin: 60px auto;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    row-gap: 40px;
}

.horni {
    display: flex;
    justify-content: space-between;
    width: 100%;
}
.hor_nadpis {
    width: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.nadpis_celek {
    font-family: 'Italianno';
    margin: 0;
    padding: 0;
    font-size: 40px;
    text-align: center;
}
.hor_nadpis h2 {
    margin: 0;
    padding: 0;
    font-size: 35px;
}
.hor_text {
    width: 600px;
    text-align: justify;
    font-size: 20px;
}

.mid_obrazek {
    height: 300px;
    width: 100%;
    overflow: hidden;
    position: relative;
    filter:drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    border-radius: 10px;
}
.mid_obrazek img {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: -35px;
}

.spodni {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: 20px;
}
.spod_obrazek {
    height: 300px;
    width: 300px;
    overflow: hidden;
    position: relative;
    filter:drop-shadow(0px 0px 5px rgba(0, 0, 0, 0.5));
    border-radius: 10px;
}
.spod_obrazek img {
    width: 100%;
    position: absolute;
    left: 0;
    bottom: 0;
}
.spod_text {
    width: 600px;
    text-align: justify;
    font-size: 21px;
    display: flex;
    justify-content: center;
    align-items: center;
}



/* Mobilní verze (zatím neřešíme, ale přesto základní podpora) */
@media (max-width: 1450px) {

}

@media (max-width: 1030px) {
    .celek {
        width: 80%;
    }
}

@media (max-width: 770px) {

    .celek {
        width: 90%;
    }
    .hor_nadpis {
        justify-content: flex-start;
    }
    .hor_nadpis h2 {
        font-size: 30px;
    }
    
}

@media (max-width: 430px) {

    .celek {
        width: 95%;
    }
    .horni {
        flex-direction: column;
    }
    .hor_text {
        width: auto;
    }
    .mid_obrazek {
        height: 230px;
    }
    .mid_obrazek img {
        height: 100%;
        width: auto;
        bottom: auto;
    }
    .spodni {
        flex-direction: column-reverse;
        align-items: center;
    }
    .spod_text {
        width: auto;
    }
}

@media (max-width: 380px) {
    .hor_text, .spod_text {
        font-size: 17px;
    }
}

@media (max-width: 321px) {

}