
.img_in_line{

    display: flex;
    gap: 15px;
}
.img_in_line  img{

    width: 200PX;
    height: auto;
   
}
.pos_left{
position: relative;
left: 50%;
         }
  
  
.container {    
    position: relative;
    left: -100px; /*растояние от левого края до первого контейнера */
    top: 20px;
    text-align: center;
    color: rgb(12, 116, 107);
    width: 100%;
    height: auto;
   
}
.centered{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.container1 {
    
    position: relative;
    left: -200px; /*растояние от левого контейнера до второго контейнера */
    top: 20px;
    text-align: center;
    color: rgb(12, 116, 107);
    width: 100%;
}
.centered1{
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%,-50%);
}
body{
background-color: rgb(238, 234, 234);
}

.header-container {
    display: flex; /* Выстраивает элементы в ряд */
    gap: 10px; /* Расстояние между заголовками (можно изменить на любое другое) */
    align-items: center; /* Выравнивание по вертикали (опционально) */
    position: relative;
    left: 50%;
}