@import url('https://fonts.googleapis.com/css?family=Roboto+Condensed');

* {
    font-family: 'Roboto Condensed', sans-serif;
    margin:0px;
    padding:0px
}
body {
    background-color:#464646;
    color:#FFF
}

.INNER {
    text-align:center;
    max-width: 980px;
    margin:10% auto 0;
    
}
.boxcontainer{
    display: flex;
    justify-content: space-between;
    margin-top:50px;
}
.boxcontainer div{
    margin:5px;
    padding:10px;
    background-color:#FFF;
    color:#000;
    border-radius:30px;
    align-self: flex-end;
}
img {
    max-width:300px;
    max-height:150px
}

@media(max-width:795px){
  .boxcontainer{
    display: block;
    justify-content: space-between;
    margin:30px 30px 0;
	  flex-direction:column ;
}  
	.boxcontainer div{
	margin-top:15px;}
}