h1 {
    text-align: center;
    margin-bottom: 20px;
}
body{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}
.container2{
    flex-grow: 2;
    width: 1350px;
    margin: 0 auto;
}
h2 {
    margin-bottom: 20px;
}

p {
    font-size: 14px;
    margin: 20px 0 20px 0;
}

.firstPart{
    display: flex;
    justify-content: space-between;
}
.img1{
    max-width: 30%;
    display: flex;
    align-items: center;
}
.img1 img{
    width: 100%;
}
.left{
    width: 67%;
}
.container2 li{
    margin: 10px 0 10px 0;
    font-size: 14px;
}
@media screen and (max-width: 960px) {
    .container2{
        width: 100%;
        padding: 5%;
        
    }
    .firstPart{
        flex-direction: column-reverse;
    }
    .img1 img{
        width: 100%;
        height: 100%;
    }
    .img1{
        height: 235px;
        max-width: none;
        justify-content: center;
        margin-bottom: 20px;
    }
    .left{
        width: 100%;
    }
}