/* left align 'feed' id text*/
.feed {
    text-align: left;
}

body {
    background-color: #f5f5f5;
    /* use lato font */
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    line-height: 30px;
    color: #333333;
    margin: 0;
    padding: 10px;
}

button {
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    line-height: 20px;
    color: #333333;
    margin: 0;
    padding: 0;
    /* rounded borders */
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    /* increase size */
    width: 100px;
    height: 50px;
    /* right align button for every id other than boost1 */
    float: right;
    /* add gap between buttons */
    margin-right: 10px;
    /* add drop shadow */
    -webkit-box-shadow: 0px 0px 5px #888;
    -moz-box-shadow: 0px 0px 5px #888;
    box-shadow: 0px 0px 5px #888;
    /* add push effect */
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
    /* add transition effect */
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
    
}

.alert {
  padding: 20px;
  background-color: #f44336;
  color: white;
  opacity: 1;
  transition: opacity 0.6s;
  margin-bottom: 15px;
}

.alert.success {background-color: #04AA6D;}
.alert.info {background-color: #2196F3;}
.alert.warning {background-color: #ff9800;}

.closebtn {
  margin-left: 15px;
  color: white;
  font-weight: bold;
  float: right;
  font-size: 22px;
  line-height: 20px;
  cursor: pointer;
  transition: 0.3s;
}

.closebtn:hover {
  color: black;
}
