body {
    font-family: 'Montserrat', sans-serif;
    background: #fbfbfb;
}
a:link{
    color: #000;
    text-decoration: none;
}
h1{
    text-align:center;
}

.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.item{
    padding: 20px;
    margin: 10px;
    background: #fff;
    border: 1px solid #e2e0e0;
    border-radius: 5px;
    display: inline-block;
}
a:hover{
    border: 1px solid #bdb4b4;
}
@media only screen and (min-width: 885px) {
    .container{
        flex-direction:row;
        justify-content: space-evenly;
        align-items: center;
        margin-top: 200px;
    }
}
