.message-box {
    position: absolute;
    top: 15px;
    left: calc(50% - 100px);
    
    padding: 8px 4px;
    letter-spacing: 2px;
    font-size: .8rem;
    font-weight: bold;
    color: white;

    width: 200px;

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5px;

    border-radius: 5px;
    box-shadow: 3px 3px 6px rgb(0 0 0 / .4);
}

.message-box.error {
    background-color: red;
}
.message-box.message {
    background-color: limegreen;
}

.message-box svg {
    fill: white;
    width: 20px;
    height: 20px;
    cursor: pointer;
}