html {
    background: url("images/background.jpeg") no-repeat;
    background-position: bottom 10% center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    font-family: 'Courier', Courier, monospace;
    width: 100%;
    height: 100%;
    
}

body {
    transition: 0.5s;
    font-size: calc(0.8rem + 0.9vw);
    margin: 1%;
    padding: 8px;
}

p {
    color: rgba(255, 255, 255, 0.9);
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 25px;
    margin: auto;
    margin-bottom: 20px;
    padding: 10px 20px;
    min-width: 50%;
    max-width: 90%;
    width: auto;
    height: auto;
    text-align: center;
}  

.speech_bubble {
    position: absolute; /* Position it relative to the viewport */
    margin: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;


}

.image_flex {
    position: absolute; /* Position it relative to the viewport */
    bottom: 0px;
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center align */

    width: max-content;
    height: min-content;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-end;
    align-content: flex-end;

}

.image_flex img {
    max-height: 30vh;
    max-width: 15vw;
    margin: 2vw;
}

.yapper {
    margin-top: auto;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: bottom;
}

.yapper img {
    position: fixed; /* Position it relative to the viewport */
    left: 50%; /* Center horizontally */
    transform: translateX(-50%); /* Center align */
    z-index: -1;
    min-width: 16%;
    min-height: 15%;
    max-height: 20vw;
}