.room-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.site-index {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#about{
    display: flex;
}

.card {
    border: 1px solid #ccc;
    padding: 10px;
    width: calc(50% - 20px);
    box-sizing: border-box;
    background-color: #ffe55c;
}
.card img {
    width: 100%;
    height: auto;
    display: block;
}
.gallery {
    display: flex;
    justify-content: center;
}
.advantages {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 20px 0px;
}

.services {
    display: flex;
    margin: 20px 0px;
}

ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.contacts {
    display: flex;
    margin: 20px 0px;
}

.review {
    display: flex;
    justify-content: center;
    align-items: center;
}

.container h2 {
    text-align: center;
}

.container p {
    text-align: center;
}

.card h3 {
    text-align: center;
}

.card h5 {
    text-align: center;
}

.cards {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media(max-width: 768px) {
    .card {
        width: 100%;
    }
}