@import url("https://fonts.googleapis.com/css?family=Montserrat:400,400i,700");

body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #263238;
    display: flex;
    justify-content: center;
    align-content: center;
    flex-direction: column;
    width: 100%;
    min-height: 100vh;
    font-family: Montserrat;
}

.imageWrapper {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.imageWrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: lighten;
    filter: brightness(2.5);
}

.container {
    position: relative;
    width: 100vw;
    min-height: 100vh;
}

.texts {
    position: relative;
    color: black;
    padding: 25px 50px;
    font-size: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

p {
    background: white;
    padding: 10px 20px;
    border-radius: 10px;
    margin: 15px;
    text-align: left;
    width: 60%;
}
p:first-letter {
    text-transform: capitalize;
}
.reply {
    text-align: right;
}

p:last-child {
    margin-bottom: 100px;
}

iframe {
    position: relative;
    width: 100%;
    height: 400px;
}

ul {
    text-align: left;
}