.d-messages {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 900px;
    list-style: none;
    text-align: center;
    padding: 0;
}

.d-debug,
.d-error,
.d-info,
.d-warning,
.d-success {
    padding: 10px 0;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    background-color: gray;
    font-weight: 600;
    letter-spacing: 1px;
    color: white;
    text-shadow: 1px 1px gray;
}

.d-messages .d-error {
    background-color: #f6995e;
}

.d-message-close {
    position: relative;
    left: 5px;
    cursor: pointer;
}