.section2 {
    position: relative;
    width: 100% /* Ширина на всю страницу */
}

.container {
    max-width: 1900px;
    margin: 0 auto;
    text-align: center;
}
        
#coordinates {
    font-size: 18px;
    margin-top: 10px;
}

#map {
    display: flex;
    width: 80%;
    /*max-width: 1800px; /* Максимальная ширина карты */
    justify-content: center;
    align-items: center;
    height: 800px;
    margin: 10px auto; /* Автоматические отступы слева и справа */
    margin-top: 20px;
}

#findGazim, #distanceToMe {
    padding: 14px 24px;
    font-size: 16px;
    cursor: pointer;
    margin: 30px auto;
    border: none;
    border-radius: 5px;
    background-color: #6441a5;
    color: white;
    transition: background-color 0.3s;
}

#findGazim:hover {
    background-color: #333;
}

#distanceToMe:hover {
    background-color: #333;
}

.distance-info {
    margin-top: 10px;
    font-size: 20px;
    font-weight: bold;
    color: red;
    justify-content: center;
    display: flex;
}    

.findGazim {
    position: absolute;
    left: 50%;
    transform: translate(-50%, -0%);
}