body{
  margin: 0;
  padding: 0;
  position: relative;
  font-family: 'Roboto', sans-serif;
}
.container {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  text-align: center;
  flex: 0 0 100%;
}
.container a{
  color: #5b5b5b;
  text-decoration: none;
}
.container a:hover{
  color: #e80000;
}
#be_overlay{
  height: 340px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .container{
    display: block;
  }
  .item{
    margin-bottom: 40px;
  }
  .item:last-child{
    margin-bottom: 0;
  }
}