#messagePage {
    background-color: white;
    border: 1px solid black;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#messagePage img {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
}

#messagePage h1 {
    text-align: center;
    margin-top: 0px;
    font-family: spaceGrotesk;
}

#messagePage h2 {
    font-size: 10px;
    color: #5d5d5d;
}

#messageBubble {
    background-color: #e5e5ea;
    padding: 10px 14px;
    border-radius: 50px;
    max-width: 85%;
    margin-right: 40px;
    line-height: 1.4;
    margin-top: 0px;
    position: relative;
}

#messageBubble2 button {
    background-color: rgb(80, 80, 213);
    padding: 10px 14px;
    border-radius: 50px;
    color: white;
    line-height: 1.4;
    margin-top: 50px;
    margin-left: 185px;
    border: 0px;
}

#messageBubble2 button:hover {
    background-color: rgba(80, 80, 213, 0.328);
    cursor: pointer;
}

