root {
    margin: 0;
    padding: 0;
}

.postTitle {
    margin: 0 auto;
    text-align: center;
    margin-bottom: 4rem;
    margin-top: 2rem;
    max-width: 90%;
}

.cont {
    max-width: 55%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    gap: 7rem;

    /* justify-content: space-between; */
}

h2, h3 {
    margin: 0;
}

.left {
    flex-direction: column;
    width: 50%
}

.left-top {
    margin-bottom: 2rem;
}

.left-bottom {
    /* align-items: flex-end; */
    text-align: end;
    padding-bottom: 2rem;
}

.email {
    text-decoration: underline;
    cursor:pointer;
}

.right {
    display: flex;
    align-items:flex-end;
    width: 50%;
}

.right img {
    height: 15rem;
}

.base {
    width: 70%;
    height: 70px;
    margin: 0 auto;
    background-image: linear-gradient(rgb(79, 83, 85), white);
}

.img {
    height: 100px;
    width: 150px;
}

@media only screen and (max-width: 992px) {
    .cont {
        max-width: 67%;
    }
}

@media only screen and (max-width: 768px) {
    .cont {
        width: 85%;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
    }
    .base {
        width: 100%;
    }
    .left, .right { 
        width: 80%; 
    }
    .right {
        justify-content: center;
    }
    .left-top, .left-bottom {
        text-align: center;
    }
}

/* .surveyHeader {
    height: 5rem;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
} */

/* img {
    height: 90%;
} */


