main {
    margin-top: 150px;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    width: 100%;
    flex-wrap: wrap;
}

main > img {
    max-height: 500px;
    width: 600px;
    max-width: 90%;
    border-radius: 20px;
}

main > div {
    max-width: 45em;
    min-width: 10em;
    margin: 0 20px;
}

.items-container {
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: stretch;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.featured-massages {
    background-color: #533223;
    color: #efaa2f;
    padding: 2em 0;
}

.featured-massage {
    min-width: 300px;
    max-width: 400px;
    background-color: #f8dbbd;
    color: #533223;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;

    margin: 1em;
    border-radius: 10px;
    overflow: hidden;
}

.featured-massage > h3 {
    margin: 16px;
}

.featured-massage img {
    max-height: 100%;
    max-width: 100%;
    height: 250px;
    width: 100%;
}

.featured-massage p {
    margin: 1em;
}

.featured-massage a {
    border-radius: 30px;
    border: none;

    margin: 16px;
    padding: 15px;
    margin-bottom: 1em;

    background-color: #533223;
    color: #efaa2f;
    font-weight: bold;
    text-decoration: none;
}

.review {
    min-width: 300px;
    max-width: 25%;
    flex-direction: column;
    justify-content: center;

    -webkit-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 10px 5px rgba(0,0,0,0.2);
    margin: 1em;
    padding: 1em;
    border-radius: 10px;
}

.review > h3, .review > h4, .review > p {
    margin: 0;
    padding: 0;
}

.review > p {
    margin-top: 10px
}
