main {
    margin: 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.details {
    padding: 1rem;
    margin: 0.5rem;
    background: url("Clipart/gold_panel_shadow.gif");
    background-size: cover;
    max-width: 1500px;
    min-width: 300px;
    width: 100%;
}

.detail {
    margin-bottom: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-content: center;
}

@media (min-width: 50rem) {
    .detail {
        flex-direction: row;
    }
}

.detail__image_container {
    max-width: 600px;
    min-width: 275px;
    flex: 1;
}

.detail__image_container img {
    width: 100%;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 0, 0.4);
}

.detail__text {
    display: flex;
    justify-content: center;
    align-content: center;
    padding: 1rem;
    font-size: 1.5rem;
    flex: 1;
}

.testimonials {
    padding: 1rem;
    margin: 0.5rem;
    background: url("Clipart/gold_panel_shadow.gif");
    background-size: cover;
    max-width: 1500px;
    min-width: 300px;
    width: 100%;
}

.testimonials__title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.testimonial {
    margin-top: 1rem;
    text-align: center;
}

.testimonial_text {
    font-size: 1rem;
}

.testimonial__author {
    font-size: 1rem;
    font-weight: bold;
}

