.notification{
    position: fixed;
    display: flex;
    width: 40vh;
    max-width: 100%;
    height: 10vh;
    max-height: 100%;
    border: 1px solid lightseagreen;
    border-radius: 1vh;
    background: rgb(52, 58, 64);
    color: white;
    bottom: 5vh;
    right: 2vh;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.notification-body{
    width: 90%;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.notification-body-status{
    width: 20%;
    border: 1px solid lightslategray;
    border-radius: 1vh;
    padding: 8px;
    text-align: center;
}

.notification-body-message{
    width: 75%;
    display: flex;
    justify-content: center;
    align-items: center;
}
