@import url('https://fonts.googleapis.com/css2?family=Gupter:wght@400;500;700&display=swap');

:root {
    --main-font-family: sans-serif;
    --primary-black-color: #513f45;
    --secondary-white-color: #ffff;
    --main-green-color: #4db749;
    --grey-background: #f0f0f0;
    --maroon-color: #340000;
    --footer-color: #171717;
}

.review-page {
    background-color: var(--grey-background);
    height: 700px;

}


.review-content {
    text-align: center;
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 100px 30px 0px;
}

.first-section:after {
    display: none;
}

.review-content h1 {
    font-family: 'gupter';
    color: var(--maroon-color);
    font-weight: bolder;
}

.review-content p {
    font-family: Arial, Helvetica, sans-serif;
    font-size: 20px;


}

.review-site {
    display: flex;
    justify-content: center;
    align-self: center;
    margin: 70px 30px;
}

.review-site img {
    width: 100%;

    border: solid 50px white;
}