.message {
    text-align: center;
    margin-top: 100px;
}

.message h1 {
    font-size: 40px;
    font-weight: 500;
    margin: 0;
    overflow-wrap: break-word;
}

.message p {
    font-size: 15px;
    font-weight: 400;
    margin: 0;
}

.quote {
    font-size: 15px;
    font-weight: 400;
    text-align: center;
    margin: 50px 0;
}

.mini-banner {
    background-image: url(../../images/background0.webp);
    width: 900px;
    height: 250px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
}

@media (max-width: 900px) {
    .mini-banner {
        display: none;
    }

    .message h1 {
        overflow-wrap: break-word;
    }

    .message {
        margin: 50px auto;
        width: 90%;
    }
}