body {
    font-size: 16px;
    font-family: 'Montserrat';
    color: #f3efea;
    background-color: #292725;
    margin: 0;
}
h1 {
    -webkit-text-stroke: 1px #f3efea;
    color: transparent;
    text-align: center;
    font-size: 45px;
    font-family: 'Fondamento';
    padding: 10px;
    font-weight: bold;
}
p {
    margin: 24px 24px;
}
.background {
    width: 100%;
    background-image: url(images/bg-wood.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    box-shadow: 0 0 100px black inset;
}
.lettres-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 75%;
    margin: 16px auto 32px auto;
    height: 450px;
    overflow: scroll;
    
}
.lettres {
    width: 180px;
    margin: 16px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.5);
    border-radius: 100%;
}
.align-center{
    text-align: center;
    font-size: 13px;
    margin-top: 64px;
    max-width: inherit;
}

@media (min-width: 500px) {
    h1 {
        font-size: 80px;
        -webkit-text-stroke: 1px #f3efea;
    }
    .lettres-container {
        margin: 64px auto 106px auto;
        height: 600px;
    }
    p {
        margin: 16px auto;
        max-width: 640px;
    }
    .align-center {
        margin-top: 64px;
    }
    .background {
        margin-bottom: 64px;
        padding: 32px 0;
    }
}

@media (min-width: 900px) {
    .lettres-container {
        height: inherit;
        overflow: inherit;
    }
}

@media (-webbkit-min-device-pixel-ratio: 2),
        (min-resolution: 190dpi) {
    .background{
        background-image: url(images/bg-wood@2x.jpg);
    }
}