.message-container {
    border-radius: 12px;
    display: flex;
    flex-direction: row;
    align-items: center;
    bottom: 1.5rem;
    padding: 1rem;
    z-index: 10000;
    box-shadow: 0 1px 5px rgb(0 0 0 / 65%);
    justify-content: space-between;
    position: absolute;
    max-width: 90%;
    margin: auto;
}
.message-text {
    margin: 0;
    max-height: 100px;
    font-weight: bold;
    font-size: 1.1em;
}
.message-close-btn {
    width: 25px;
    height: 25px;
    line-height: 22px;
    border-radius: 100%;
    margin: 3px;
    padding: 5px;
    text-align: center;
    font-weight: bolder;
    cursor: pointer;
    font-size: large;
    color:antiquewhite;
    align-self: center;
    display: flex;
} 
.message-close-btn:hover {
    background-color: white;
    border: solid 1px #444;
    color: #444;
}
.message-close-btn i {
    align-self: center;
}

@media (max-width: 769px) {
    .message-container {
        width: 80%;
    }
}
