body {
    background-color: #e5e5e5;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
    padding: 5px;
}

.header {
    display: flex;
    justify-content: center;
}

.header__logo {
    margin-top: 15px;
    margin-bottom: 30px;
    width: 230px;
    height: auto;
}


.main__images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.main__images__container {
    flex: 0 0 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main__images__container__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 25px;
}

.main__images__container__title {
    font-size: 20px;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .main__images__container {
        flex: 0 0 100%;
    }
}

.main__text {
    text-align: center;
    line-height: 27px;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    margin-bottom: 40px;
}



.address {
    text-align: center;
    font-style: normal;
    font-size: 20px;
    text-transform: uppercase;
    background: linear-gradient(to right, rgb(99, 99, 99), rgb(72, 72, 72));
    color: white;
    border-radius: 20px;
    padding: 30px 20px;
}

@media (min-width: 768px) {
    .address {
        max-width: 900px;
        margin: 0 auto;
    }
}

.footer {
    text-align: center;
    display: flex;
    justify-content: center;
}

.footer img {
    margin-top: 30px;
    margin-bottom: 20px;
    max-width: 100%;
    width: 940px;
    height: auto;
}
