.upper {
    margin-top: 70px;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
}
.photos {
    max-width: 700px;
}
.big {
    width: 600px;
    height: 400px;
    border: solid black 2px;
}
.small {
    width: 150px;
    height: 90px;
    border: solid black 2px;
    float: left;
    margin: 20px 10px 0px 0px;
    cursor: pointer;
}
.name {
    text-align: end;
    width: 430px;
}
.name h2 {
    font-size: 33px;
    margin-bottom: 30px;
}
.name p {
    text-align: start;
    margin-top: 30px;
}
.tabela {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
    line-height: 30px;
    width: 900px;
    padding: 40px;
    height: auto;
    background-color: rgb(206, 206, 206);
}
.tabela h3 {
    font-size: 30px;
}
.tabela table {
    width: 800px;
}
@media (max-width: 768px) {
    .upper {
        flex-direction: column;
        margin: 70px 30px;
    }
    .big {
        width: 350px;
        height: 200px;
    }
    .big img {
        width: 350px;
        height: 200px;
    }
    .small {
        width: 90px;
        height: 70px;
    }
    .small img {
        width: 90px!important;
        height: 70px!important;
    }
    .name {
        width: 330px;
    }
    .name h2 {
        font-size: 25px;
    }
    .tabela {
        width: 300px;
        font-size: 15px;
    }
    .tabela table {
        width: 300px;
    }
    .tabela h3 {
        font-size: 20px;
    }
}
