.notification {
    background-color: #F3F3F3;
    border-radius: 10px;
    box-shadow: 0 8px 20px #00000029;
    color: #05010A;
    font-size: 20px;
    font-weight: 500;
    left: 50%;
    opacity: 0;
    padding: 20px 40px;
    position: fixed;
    top: -100px;
    transform: translateX(-50%);
    transition: top 0.4s ease, opacity 0.4s ease;
    z-index: 9999;
}

@media screen and (max-width: 959px) {
    .notification {
        font-size: 19px;
        padding: 20px 30px;
        width: 90%;
    }
}

.notification.show {
    top: 30px;
    opacity: 1;
}