/*basic settings*/
main{
    padding: 0px 10%;
    margin-top: 100px;
}
@media (min-width:768px) {
    main{
        padding: 0px 3%;
    }
}
@media (min-width:1024px) {
    main{
        padding:0px 10%
    }
}

/*page*/

.uvod h1 span{
    background: linear-gradient(to right, #222cdd, #545ced);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}
.uvod h1{
    display: block;
    text-align: center;
}
section.link{
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
section.link img{
    flex: 1;
    cursor: pointer;
    max-width: 80%;
    border-color: black;
    border-width: 3px;
    border-radius: 15px;
    border: solid;
}
.link a{
    transition: transform 0.2s ease-in-out;
}
.link a:hover{
    transform: translateY(-6px);

}
section.link h2{
    flex: 1;
}

/*o projektu*/

section.o-projektu, section.spokojenost{
    background-color: #f2f2f8;
    border-radius: 15px;
    padding: 40px;
}
.spokojenost{
    margin-top: 40px;
}
.o-projektu h2{
    margin: 0px;
    margin-bottom: 20px;
}
.o-projektu h4{
    margin: 0px;
}


@media (min-width:768px) {
    section.link{
        flex-direction: row;
        text-align: left;
    }
    section.link img{
        max-width: 35vw;
    }
}
