body{
    background-color: #FAF7F5;
    font-family: "M PLUS Rounded 1c";
}

h1{
    font-size: 2em;
    color: #4e4d4c;

}

h6{
    margin-top: 10px;
    font-size: 0.67em;
    color: #4e4d4c;
}

.wrap{
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.text-center{
    text-align: center;
}


.question{
    display: flex;
    align-items: center;
    margin-top: 70px;
    max-width: 1000px;
    width: 100%;
}



.question p{
    padding: 20px;
    background-color: white;
    color: #EB953F;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    margin: 1.5em 0 1.5em 15px;
    padding: 15px ;
    width: calc(100% - 264px);
    font-size: 16px;
    border: solid 3px #555;
    box-sizing: border-box;
}
.question img{
 width: auto;
 height: 120px;
 padding: 20px;
}

.answer img{
    width: auto;
    height: 120px;
    padding: 20px;
}
   
.question p:before {
    content: "";
    position: absolute;
    top: 50%;
    left: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-right: 12px solid #FFF;
    z-index: 2;
  }

  .question p:after {
    content: "";
    position: absolute;
    top: 50%;
    left: -30px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-right: 14px solid;
    z-index: 1;
    color: #555;
}

.answer{
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    max-width: 1000px;
    justify-content: flex-end;
    width: 100%;
}



.answer p{
    background-color: white;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    margin: 1.5em 15px 1.5em 0;
    padding: 15px ;
    width: calc(100% - 264px);
    font-size: 16px;
    border: solid 3px #555;
    box-sizing: border-box;
}

.answer p:before {
    content: "";
    position: absolute;
    top: 50%;
    right: -24px;
    margin-top: -12px;
    border: 12px solid transparent;
    border-left: 12px solid #FFF;
    z-index: 2;
}
  
.answer p:after {
    content: "";
    position: absolute;
    top: 50%;
    right: -30px;
    margin-top: -14px;
    border: 14px solid transparent;
    border-left: 14px solid #555;
    z-index: 1;
}
  
@media screen and (max-width:800px){
    .text-center {
        margin-top: 90px;
        margin-bottom:20px ;   
     }
    .question img{
        width: 80px;
        height: auto;
    }
    .question p{
        width: calc(100% - 190px);
    }

    .answer img{
        width: 80px;
        height: auto;

    }
    .answer p{
        width: calc(100% - 190px);
    }
}

@media screen and (max-width:425px){
    .question img{
        width: 60px;
        height: auto;

    }
    .question p{
        width: calc(100% - 100px);
    }

    .answer img{
        width: 60px;
        height: auto;

    }
    .answer p{
        width: calc(100% - 100px);
    }

    .wrap{
        margin:0 15px;
    }
}
