@font-face {
    font-family: MontserratAlternates;
    src: url('/static/fonts/Montserrat_Alternates/MontserratAlternates-Bold.ttf');
}
@font-face {
    font-family: Montserrat;
    src: url('/static/fonts/Montserrat/Montserrat-VariableFont_wght.ttf');
}
body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    font-family: Arial, sans-serif;
    background-color: #f7c359;
    max-width: 500px;
    margin: 0 auto;
}
.content {
    width: 100%;
  -moz-tab-size: 4;
  -o-tab-size: 4;
  tab-size: 4;
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  unicode-bidi: isolate;
}

.content.bottom-back {
    text-align: center;
}
.content.bottom-back .go-back {
    text-align: center;
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background: url('/static/images/src/icons/left-arrow.png') 0 center no-repeat;
    background-size: auto;
    padding-left: 20px;
}
.content.bottom-back .back-to-cities {
    text-align: center;
    font-family: 'Montserrat';
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background: url('/static/images/src/icons/return.png') 5px center no-repeat;
    background-size: 13px;
    padding-left: 20px;
    background-color: #f7b643;
    padding: 2px 10px 2px 30px;
    border-radius: 10px;
}
.bottom-link {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 0;
    background-color: #f7b643;
    margin: 0;
}
.bottom-link a {
    font-family: 'Montserrat';
    color: #333;
    text-decoration: none;
    text-align: ;
    text-transform: uppercase;
    color: #fff;font-weight: 600;
    font-size: 12px;
}


/* Модальное окно для изображения */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0,0,0,0.9);
    align-items: center;
    justify-content: center;
}

.modal-content {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    cursor: pointer;
}