body {
    background-color: #303030;
    font-family: 'Montserrat';
}

h1 {
    color: white;
}

a {
    text-decoration: none;
}

.title {
    display: flex;
    justify-content: center;
}

.container-images {
    display: flex;
    flex-wrap: wrap; 
    justify-content: space-between; 
    margin: 50px 100px;
    /* margin-top: 20px;
    margin-bottom: 20px; */
}

.container-images a {
    display: flex;
    align-items: center;
    margin: 0 10px;
}

.container-images img {
    width: 100%; 
    height: auto;
}

.container-image {
    width: 100%; 
    max-width: 200px; 
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 10px;
}

.container-image h2 {
    color: white;
    margin-top: 15px;
    text-align: center;
    font-size: 20px;
}

@media screen and (min-width: 768px) {
    .container-image {
        max-width: 200px; 
    }
}

@media screen and (max-width: 895px) {
    .container-images {
        justify-content: center; 
        margin: 50px 20px; 
    }

    .container-image {
        max-width: 100%; 
        margin: 50px 20px; 
    }
}

@media screen and (min-width: 694px) and (max-width: 1175px) {
    .container-image {
        max-width: calc(100% - 20px);
    }
}