* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    user-select: none;
}

body {
    background-color: #00000000;
}

.wrapper {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
}


.notification {
    display: flex;
    gap: 20px;
    flex-direction: column;
    width: 800px;
    height: 600px;
    opacity: 0;
    justify-content: center;
}

.notification__gif {
    max-height: 75%;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    object-fit: contain;
}

.notification__text {
    text-align: center;
    font-weight: bold;
}

@keyframes showNotify {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}