.containerMichal {
    display: flex;
    align-items: center; 
    padding-bottom: 4%;
    background-color: #071f35;
    border-radius: 10px;
    margin-bottom: 4%;
}
  
.text {
    flex: 1; 
    padding-top: 20px;
    padding-bottom: 20px;
    margin-left: 15%;
}
  
.image {
    flex: 1; 
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 5%;
    padding-left: 10%;
    padding-right: 15%;
}
  
.image img {
    width: 600px; 
    height: auto; 
    border-radius: 10px; 
    box-shadow: 13px -19px 0px 0px rgba(238, 145, 79, 0.74);
    -webkit-box-shadow: 13px -19px 0px 0px rgba(238, 131, 55, 0.74);
    -moz-box-shadow: 13px -19px 0px 0px rgba(223, 121, 49, 0.74);
}






.text h1 {
    font-size: 42px;
    color: #ffff;
    width: 80%;
    font-family: "Oswald", sans-serif;
}

.text h2 {
    
    font-family: "Oswald", sans-serif;
    font-size: 22px;    
}

.barevnostTextu {
    color: #F7934C;
}

.text p {
    padding-top: 3%;
    margin-bottom: -1.5%;
    color: #ffff;
    font-size: 16px;
    width: 80%;
    font-family: "Inter", sans-serif;
    font-weight: 100;
}

.obrazekVpravo {
    width: 50%;
    padding-top: 3%;
}

.obrazek {
    width: 80px;
}

.odsazeniRight {
    width: 60%;
}

@media only screen and (max-width: 1200px) {
    .image img {
        width: 300px;
    }
}



@media only screen and (max-width: 768px) {
    .containerMichal {
        flex-direction: column;
    }

    .image {
        padding-left: 0;
        margin-top: 30px;
    }
}


@media only screen and (max-width: 550px) {
    .containerMichal {
        flex-direction: column;
    }

    .image {
        margin-top: 50px;
        align-items: center;
        justify-content: center;
    }

    .image img {
        width: 250px;
    }


}


.banner {
    position: absolute;
    bottom: 3.125em;
    left: 3.125em;
    width: max-content;
    padding: 1.25em 1em;
    border-radius: 0.25em;
    background-color: #0b0c14;
    color: #fff;
    transform: translateY(2em);
    opacity: 0;
    animation: fade-in 16s;
}

.banner p {
    font-size: 125%;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.banner button {
    background-color: #F7934C;
    border: none;
    color: white;
    padding: 10px 20px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    margin: 4px 2px;
    cursor: pointer;
    border-radius: 4px;
}

.banner button:hover {
    background-color: #FFA76B;
}

.progress {
    position: absolute;
    inset: auto 0.625em 0.375em;
    height: 0.25em;
    background-color: #F7934C;
    transform: scaleX(0);
    transform-origin: left;
    border-radius: 0.5em;
    animation: load 14.2s 0.2s linear;
}

@keyframes fade-in {
    5%,
    90% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes load {
    100% {
        transform: scaleX(1);
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.4);
}

.modal-content {
    background-color: #fefefe;
    margin: 20% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}