.fa-window-close {
    position: absolute;
    right: 0;
    margin-right: 1em;
    cursor: pointer;
    padding: 2px;
    border-radius: 3px;
    top: 0;
    margin-top: 10px;
}

.fa-window-close:hover {
    transition: all 300ms;
    background-color: rgb(253, 139, 139);
}

.notifications-sussefull {
    position: absolute;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-left: 5%;
    margin-top: 10vh;
    height: 80vh;
    font-size: 1.5em;
    border-radius: 8px;

    text-align: center;
    padding: 8px 0px;
    background-color: rgba(147, 250, 151,.9);
    color: rgb(51, 51, 51);
    z-index: 10;
    text-shadow: .2px .2px 1px black;
}

.notifications-error {
    position: absolute;
    top: 0;

    display: flex;
    align-items: center;
    justify-content: center;
    width: 90%;
    margin-left: 5%;
    margin-top: 10vh;
    height: 80vh;
    font-size: 1.5em;
    border-radius: 8px;

    text-align: center;
    padding: 0px;
    padding: 8px 0px;
    background-color: rgb(255, 62, 62);
    color: rgb(255, 255, 255);
    z-index: 10;
    font-weight: bold;
    text-shadow: .2px .2px 1px black;
}

@media (max-width: 800px) {
    .notifications-sussefull,
    .notifications-error {
        font-size: .7em;
    }
}