/* FONT */
@import url(https://fonts.googleapis.com/css?family=Smooch+Sans:100,200,300,regular,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Montserrat:100,200,300,regular,500,600,700,800,900,100italic,200italic,300italic,italic,500italic,600italic,700italic,800italic,900italic);

/*** GLOBAL STYLES ***/
*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #1e1e1e;
}
/* HEADER PART*/
.header{
    padding-top: 10px;
    z-index: 12;
    text-align: center;
}

.header h1 img{
    width: 35px;
    height: auto;
}

/* Remerciement */
.thanks{
    display: grid;
    place-items: center;
    text-align: center;
    height: 80px;
    color: white;
    justify-content: center;
}

.thanks .title{
    font-family: 'Open Sans', sans-serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 5px;
}

.thanks .message{
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    width: 40%;
    line-height: 1.5;
    margin-top: 15px;
    font-weight: 500;
}

.thanks .message strong{
    color: #ae2fd2;
}


.quote{
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-style: italic;
    margin-top: 10px;
    color: #cccccc;
}

.thanks mark{
    background-color: #af2fd25b;
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
}

.thanks h3{
    font-family: 'Open Sans', sans-serif;
    margin-top: 12px;
    font-size: 18px;
    color: #f0f0f0;
}

/* MEDIA QUERIES */
@media (max-width: 768px) {
    .thanks .message{
        width: 80%;
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .thanks .message{
        width: 90%;
        font-size: 12px;
    }
}