.message{
    position: absolute;
    top:2em;
    left:50%;
    transform: translate(-50%,0);
    padding: 10px;
    background-color: rgba(50, 250, 50, 1);
    color: white;
    max-width: 800px;
    box-shadow: 10px 10px 15px #333;
    border-radius: 10px;
    z-index: 1000;
}

.error{
    background-color: rgba(250, 50, 50, 1);
}

@media (max-width: 700px) {
    .message{
        width: 95%;
    }
}