#Notification-Box {
    position: absolute;
    top: 3%;
    left: -600px;
    z-index: 1000;

    width: 50vh;
    aspect-ratio: 5/1;
    max-width: 90vw;

    background-color: #383838;
    border: solid 6px #5b5b5b;
    border-left: none;
    box-shadow: 0px 0px 50px 10px black;

    transition: ease-out 0.3s;

    display: flex;
    align-items: center;
}

#notification-text {
    color: white;
    font-size: 42px;
    padding-left: 5%;
}

.box-showing {
    transform: translateX(600px);
}
