#notifications {
    display: flex;
    flex-direction: column;
    align-items: center;
}

#notifications .notification:first-child {
    margin-bottom: 6px;
}

.my {
    display: inline-block;
    transition: opacity .3s ease;
    max-width: 400px;
}

.my:hover {
    text-decoration: none;
    opacity: .7;
}

@media (max-width: 640px) {
    .my {
        max-width: 280px;
    }
}



