.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-header h1 {
    width: 100%;
    text-align: center;
}

.centered {
    display: block;
    margin: 10px auto;
}
.text-centered {
    text-align: center;
}

.fl-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.page-content {
    width: 800px;
    margin: 10px 20px;
}

.park-gallery {
    display: grid;
    grid-template-areas:
        "stp stimg"
        "stpimg stpp"
        "comp comimg";
}

.park-gallery p {
    text-align: center;
    align-self: center;
}

.stimg {
    grid-area: stimg;
}
.stp {
    grid-area: stp;
}
.stpimg {
    grid-area: stpimg;
}
.stpp {
    grid-area: stpp;
}
.comimg {
    grid-area: comimg;
}
.comp {
    grid-area: comp;
}

span.descr {
    display: block;
    font-size: 12px;
}

p.other-way {
    margin-top: 30px;
}

.number {
    font-style: italic;
    font-size: 1.2em;
}

.apps {
    display: flex;
    justify-content: space-between;
    align-self: center;
    width: 300px;
}

.apps a {
    margin-right: 20px;
}
.apps a:last-child  {
    margin-right: 0;
}

.apps img {
    margin-right: 10px;
}

.mt4 {
    margin-top: 40px;
}

.pop-trace {
    display: block;
}


@media (max-width: 990px) {
.page-content {
    width: 100%;
    margin: 0px 20px;
}
}













