#chatter {
    height: 100vh;
    overflow: auto;
    padding-bottom: 15vh;
}

#sg_row { height: 100vh; }

.link_style { cursor: pointer; }

/* Medium devices (landscape tablets, 768px and up) */
@media only screen and (max-width: 992px) {
    p {
        font-size: 2rem;
    }
    .btn { font-size: 2rem; }
    .answermessage { font-size: 2rem; }

    #sg_row_third { height: 30vh; }

    #sg_row_links {
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        position: absolute;
        bottom: 10px;
        font-size: 2rem;
    }
}

/* Large devices (laptops/desktops, 992px and up) */
@media only screen and (min-width: 992px) {
    
    #sg_row_third { height: 40vh; }

    #sg_row_links {
        margin-left: auto;
        margin-right: auto;
        left: 0;
        right: 0;
        text-align: center;
        position: absolute;
        bottom: 10px;
    }
}

.message {
    margin-left: 13%;
    padding: 30px;
    border-top-right-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    background-color: #f1f1f1;
    display: inline-block;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}
.messagewrapper {
    width: 100%;
    margin-bottom: 20px;
    transition: 1s;
}
.messagewrapper.faded-out {
    opacity: 0;
}
.chaticon {
    background-image: url('/img/achim.png');
    background-size: 80px;
    border: 1px solid lightgray;
    border-radius: 50%;
    position: relative;
    width: 80px;
    height: 80px;
    top: 80px;
    
}
.answermessage {
    margin-top: 20px;
    margin-bottom: 20px;
    margin-left: 15%;
    float: right;
    padding: 30px;
    border-top-left-radius: 12px;
    border-bottom-right-radius: 12px;
    border-bottom-left-radius: 12px;
    display: block;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.btnBox {
    margin-top: 20px;
    display: flex;
    justify-content: center;
}
.yes{ background-color: #72db8d; }
.no{  background-color: #db7279; }


.yes:hover { background-color: #35cc5b; }
.no:hover { background-color: #cc353f; }

.btn {
    white-space: normal;
    display: inline;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    border-style: none;
    margin-left: 2.5%;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}