*{
    font-family: 'Rubik'; 
}

/*--------- body ----------*/
.general-container{
    margin: 0 auto;
    width: 90%;
    height: auto;
}

.inspiration{
    width: 100%;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.inspiration h2{
    margin: 0;
    color: #a2b1a0;
    font-weight: 500;
}

.inspiration h3{
    margin: 0;
    font-weight: 300;
    font-size: 1em;
    text-align: center;
    width: 80%;
    height: auto;
}

.grid-container{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

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


.contactus{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 40px 0;
}

.contactus a{
    font-weight: 500;
}

.contactus h3{
    margin: 0;
    font-weight: 300;
    font-size: 1em;
    text-align: center;
    width: 80%;
    height: auto;

}
 
@media (max-width: 431px){
    .grid-container{
        grid-template-columns: 1fr;
        gap: 20px;
        
    } 

    .grid-container img{
        margin: 0 auto;
        width: 80%;
        height: auto;
    }   
}
